プロバイダー

Z.ai

Z.ai's GLM — MIT-licensed MoE LLMs from 128K to 200K context, top open-weight SWE-bench scores, via one RunAPI key.

1 models · 7 variants · から $0.010
概要

Z.ai builds the GLM family of MIT-licensed Mixture-of-Experts language models for coding and agentic workflows. The line spans GLM-4.5 (355B / 32B active, 128K context) through GLM-5.1 (754B / 40B active, 200K context), which holds the top open-weight SWE-bench Pro score at 58.4%. All are available through RunAPI from the OpenAI and Anthropic SDKs with per-token billing.

  • 全プロバイダー共通の API key
  • Model skill が docs と schema を作業環境に持ち込みます
  • 呼び出し単位の課金、契約不要
  • 失敗した生成は課金されません
機能

注目ポイント

モデル

Z.ai の全モデル

クイックスタート

Z.ai の model skill をインストール。

モデルを選んで skill を追加すると、コードツールが docs、schema、料金メモ、セットアップ手順を参照できます。

runapi.ai
# Base URL
https://runapi.ai

# Endpoints
POST /v1/chat/completions
curl https://runapi.ai/v1/chat/completions \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "glm-5.1",
  "messages": [
    {
      "role": "user",
      "content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."
    }
  ]
}'
from openai import OpenAI

client = OpenAI(
    base_url="https://runapi.ai/v1",
    api_key="your-runapi-key"
)

response = client.chat.completions.create(
    model="glm-5.1",
    messages=[{"role": "user", "content": "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause."}]
)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://runapi.ai/v1",
  apiKey: "your-runapi-key"
});

const response = await client.chat.completions.create({
  model: "glm-5.1",
  messages: [{ role: "user", content: "Read this multi-file repository, find the failing integration test, and propose a patch with an explanation of the root cause." }]
});
https://runapi.ai /v1/chat/completions
リファレンス

Z.ai の全バリアント

料金表を見る →
Model Variant Billing From
GLM
glm-4.5 1K tokens $0.020 見る →
glm-4.5-air 1K tokens $0.010 見る →
glm-4.6 1K tokens $0.020 見る →
glm-4.7 1K tokens $0.020 見る →
glm-5 1K tokens $0.020 見る →
glm-5-turbo 1K tokens $0.020 見る →
glm-5.1 1K tokens $0.030 見る →
FAQ

Z.ai に関するよくある質問

これは Z.ai の公式連携ですか?

RunAPI は、料金、機能、エラー挙動が明確なマネージド API サーフェスを提供します。

Z.ai アカウントは必要ですか?

いいえ。RunAPI key だけでマネージドアクセスを利用できます。

料金はどう請求されますか?

呼び出しまたは単位ごとの従量課金で、失敗した生成は課金されません。

今すぐ開始

1つの API から Z.ai モデルを呼び出す。