GLM
GLM 텍스트

thanhnhan9023/glm-5.2

모델 ID: thanhnhan9023/glm-5.2
계열
GLM
컨텍스트
아직 업데이트되지 않음
요청당
1.411 ₩
요청 수
51.2K
성공
96.0%
토큰
5.11B
업타임 95.10%
24시간 전지금
7일 전지금

가격표

요청당
1.411 ₩
가격 변경 기록

적용되었던 가격 수준입니다. "현재"로 표시된 행이 적용 중인 가격입니다.

이전 시작일 29/07/2026 - 10:03:56
요청당1.764 ₩ 최소 요금 / 요청1.764 ₩ Cache 읽기 / 1M 토큰17.647 ₩ Cache 쓰기 / 1M 토큰17.647 ₩
이전 시작일 02/08/2026 - 23:37:32
요청당3.529 ₩ Cache 읽기 / 1M 토큰21.176 ₩ Cache 쓰기 / 1M 토큰21.176 ₩
현재 시작일 14/08/2026 - 14:38:46
요청당1.411 ₩ Cache 읽기 / 1M 토큰25.411 ₩ Cache 쓰기 / 1M 토큰25.411 ₩
지원 엔드포인트
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/thanhnhan9023/glm-5.2:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
메서드 POST · application/json
인증 Bearer 토큰(API 키)
검증된 부하 🟡 Medium peak 15/s · sustained 5.7/s
지연 시간 p95 13,095 ms
API 유형 텍스트

공유

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "thanhnhan9023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "안녕하세요, 당신은 누구인가요?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "thanhnhan9023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "안녕하세요, 당신은 누구인가요?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "thanhnhan9023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "안녕하세요, 당신은 누구인가요?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "thanhnhan9023/glm-5.2",
    "messages": [
        {
            "role": "user",
            "content": "안녕하세요, 당신은 누구인가요?"
        }
    ]
}

빠른 시도

API 키로 프롬프트를 보내세요 — 실제 크레딧이 사용되며 결과가 즉시 스트리밍됩니다.

리뷰 및 댓글
1.4 / 7 리뷰
리뷰를 불러오는 중...
고객 지원 문의
언제든지 도와드릴 준비가 되어 있습니다