FOURNISSEUR

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 · à partir de $0.010
APERÇU

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.

  • Une API key partagée entre fournisseurs
  • Les model skills apportent docs et schémas dans votre workspace
  • Facturation par appel, sans engagement
  • Les générations échouées ne sont pas facturées
FONCTIONNALITÉS

Points forts

MODÈLES

Tous les modèles de Z.ai

DÉMARRAGE RAPIDE

Installez un model skill Z.ai.

Choisissez un modèle et ajoutez son skill pour que votre outil de code dispose des docs, schémas, notes de tarifs et étapes de setup.

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
RÉFÉRENCE

Toutes les variantes de Z.ai

Table complète des tarifs →
Model Variant Billing From
GLM
glm-4.5 1K tokens $0.020 Voir →
glm-4.5-air 1K tokens $0.010 Voir →
glm-4.6 1K tokens $0.020 Voir →
glm-4.7 1K tokens $0.020 Voir →
glm-5 1K tokens $0.020 Voir →
glm-5-turbo 1K tokens $0.020 Voir →
glm-5.1 1K tokens $0.030 Voir →
FAQ

Questions fréquentes sur Z.ai

Est-ce une intégration officielle Z.ai ?

RunAPI expose une surface API gérée avec tarifs, capacités et comportement d'erreur transparents.

Ai-je besoin d'un compte Z.ai ?

Non. Votre clé RunAPI suffit pour l'accès géré.

Comment les tarifs sont-ils facturés ?

Par appel ou par unité mesurée, sans facturation des générations échouées.

COMMENCER

Commencez à appeler les modèles Z.ai depuis une seule API.