Claude
Claude 텍스트

devdoclang/claude-sonnet-5

모델 ID: devdoclang/claude-sonnet-5
계열
Claude
컨텍스트
1,000,000
최소 요금 / 요청
0.635 ₩
Cache 적중률
18.8%
요청 수
3.2K
성공
97.8%
토큰
261.55M
업타임 100.00%
24시간 전지금
7일 전지금

가격표

입력 / 1M 토큰
116.47 ₩
출력 / 1M 토큰
183.529 ₩
최소 요금 / 요청
0.635 ₩
Prompt Cache 18.8%
Cache 읽기 / 1M 토큰
142.305 ₩
Cache 쓰기 / 1M 토큰
274.447 ₩

반복되는 프롬프트는 캐시됩니다 — 입력보다 읽기가 훨씬 저렴하며 API 호출 시 자동 적용됩니다.

가격 변경 기록

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

이전 시작일 30/07/2026 - 15:10:30
입력 / 1M 토큰73.529 ₩ 출력 / 1M 토큰135.294 ₩ 최소 요금 / 요청0.176 ₩ Cache 읽기 / 1M 토큰58.823 ₩ Cache 쓰기 / 1M 토큰67.647 ₩
이전 시작일 02/08/2026 - 12:59:58
입력 / 1M 토큰130.588 ₩ 출력 / 1M 토큰176.47 ₩ Cache 읽기 / 1M 토큰102.352 ₩ Cache 쓰기 / 1M 토큰130.588 ₩
이전 시작일 03/08/2026 - 18:04:20
입력 / 1M 토큰109.411 ₩ 출력 / 1M 토큰169.411 ₩ Cache 읽기 / 1M 토큰95.294 ₩ Cache 쓰기 / 1M 토큰141.176 ₩
이전 시작일 05/08/2026 - 22:28:47
입력 / 1M 토큰109.411 ₩ 출력 / 1M 토큰169.411 ₩
이전 시작일 08/08/2026 - 11:45:51
입력 / 1M 토큰116.47 ₩ 출력 / 1M 토큰183.529 ₩ 최소 요금 / 요청0.635 ₩ Cache 읽기 / 1M 토큰98.823 ₩ Cache 쓰기 / 1M 토큰190.588 ₩
이전 시작일 13/08/2026 - 06:13:21
입력 / 1M 토큰116.47 ₩ 출력 / 1M 토큰183.529 ₩ 최소 요금 / 요청0.635 ₩ Cache 읽기 / 1M 토큰118.588 ₩ Cache 쓰기 / 1M 토큰228.705 ₩
현재 시작일 15/08/2026 - 04:18:37
입력 / 1M 토큰116.47 ₩ 출력 / 1M 토큰183.529 ₩ 최소 요금 / 요청0.635 ₩ Cache 읽기 / 1M 토큰142.305 ₩ Cache 쓰기 / 1M 토큰274.447 ₩
비용 예상
예상 합계 0 ₩
요청당 평균 0 ₩

공표된 가격 기준의 예상치입니다. 캐시가 있으면 대개 더 저렴합니다.

지원 엔드포인트
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/devdoclang/claude-sonnet-5:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
메서드 POST · application/json
인증 Bearer 토큰(API 키)
Rate limit 80 req/min
검증된 부하 🟢 High peak 40/s · sustained 3.1/s
지연 시간 p95 4,824 ms
API 유형 텍스트

기술 메모

Due to limited supply, I've temporarily increased model prices. Thanks for your understanding. Feel free to check out my more affordable GPT models.

공유

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "devdoclang/claude-sonnet-5",
    "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": "devdoclang/claude-sonnet-5",
    "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": "devdoclang/claude-sonnet-5",
    "messages": [
        {
            "role": "user",
            "content": "안녕하세요, 당신은 누구인가요?"
        }
    ]
}

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

빠른 시도

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

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