제공사

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만 있으면 관리형 접근을 사용할 수 있습니다.

가격은 어떻게 청구되나요?

호출 또는 단위 기준으로 과금되며 실패한 생성은 청구되지 않습니다.

지금 시작

하나의 API로 Z.ai 모델을 호출하세요.