ANBIETER

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 · ab $0.010
ÜBERBLICK

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.

  • Ein API Key für mehrere Anbieter
  • Model Skills bringen Docs und Schemas in deinen Workspace
  • Abrechnung pro Aufruf, ohne Verpflichtung
  • Fehlgeschlagene Generierungen werden nicht berechnet
FUNKTIONEN

Was heraussticht

MODELLE

Alle Modelle von Z.ai

QUICKSTART

Installiere einen Z.ai Model Skill.

Wähle ein Modell und füge seinen Skill hinzu, damit dein Coding-Tool Docs, Schemas, Preishinweise und Setup-Schritte kennt.

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
REFERENZ

Jede Variante von Z.ai

Vollständige Preistabelle →
Model Variant Billing From
GLM
glm-4.5 1K tokens $0.020 Ansehen →
glm-4.5-air 1K tokens $0.010 Ansehen →
glm-4.6 1K tokens $0.020 Ansehen →
glm-4.7 1K tokens $0.020 Ansehen →
glm-5 1K tokens $0.020 Ansehen →
glm-5-turbo 1K tokens $0.020 Ansehen →
glm-5.1 1K tokens $0.030 Ansehen →
FAQ

Häufige Fragen zu Z.ai

Ist das eine offizielle Z.ai-Integration?

RunAPI stellt eine verwaltete API-Oberfläche mit transparenten Preisen, Funktionen und Fehlerverhalten bereit.

Brauche ich ein Z.ai-Konto?

Nein. Dein RunAPI Key reicht für den verwalteten Zugriff.

Wie wird abgerechnet?

Pro Aufruf oder Einheit; fehlgeschlagene Generierungen werden nicht berechnet.

JETZT STARTEN

Rufe Z.ai-Modelle über eine API auf.