Claude
Claude ข้อความ

devdoclang/claude-fable-5

Model ID: devdoclang/claude-fable-5
ตระกูล
Claude
บริบท
1,000,000
ค่าใช้จ่ายขั้นต่ำ / คำขอ
0.0244 ฿
อัตรา Cache hit
11.9%
คำขอ
705
สำเร็จ
93.5%
โทเค็น
36.93M
เวลาใช้งาน
24 ชม. ที่แล้วตอนนี้
7 วันที่แล้วตอนนี้

ราคา

Input / 1M token
13.061 ฿
Output / 1M token
17.959 ฿
ค่าใช้จ่ายขั้นต่ำ / คำขอ
0.0244 ฿
Prompt Cache 11.9%
Cache read / 1M token
12.734 ฿
Cache write / 1M token
18.612 ฿

Prompt ที่ซ้ำกันถูกแคชไว้ — การอ่านราคาถูกกว่า input มาก ใช้โดยอัตโนมัติผ่าน API

ประวัติราคา

ระดับราคาที่เคยใช้ แถวที่ระบุ "ปัจจุบัน" คือราคาจริง

อดีต ตั้งแต่ 29/07/2026 - 20:05:29
Input / 1M token6.802 ฿ Output / 1M token12.244 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0204 ฿ Cache read / 1M token5.442 ฿ Cache write / 1M token6.802 ฿
อดีต ตั้งแต่ 02/08/2026 - 11:54:52
Input / 1M token16.326 ฿ Output / 1M token24.489 ฿ Cache read / 1M token14.693 ฿ Cache write / 1M token18.775 ฿
อดีต ตั้งแต่ 03/08/2026 - 23:11:25
Input / 1M token13.224 ฿ Output / 1M token21.224 ฿ Cache read / 1M token11.428 ฿ Cache write / 1M token16.326 ฿
อดีต ตั้งแต่ 05/08/2026 - 18:25:47
Input / 1M token10.612 ฿ Output / 1M token15.51 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0326 ฿ Cache read / 1M token8.979 ฿ Cache write / 1M token12.244 ฿
อดีต ตั้งแต่ 08/08/2026 - 11:44:33
Input / 1M token13.061 ฿ Output / 1M token17.959 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0244 ฿ Cache read / 1M token10.612 ฿ Cache write / 1M token15.51 ฿
ปัจจุบัน ตั้งแต่ 13/08/2026 - 00:18:58
Input / 1M token13.061 ฿ Output / 1M token17.959 ฿ ค่าใช้จ่ายขั้นต่ำ / คำขอ0.0244 ฿ Cache read / 1M token12.734 ฿ Cache write / 1M token18.612 ฿
ตัวประมาณค่าใช้จ่าย
ยอดรวมโดยประมาณ 0 ฿
เฉลี่ย / คำขอ 0 ฿

ประมาณการจากราคาที่แสดงไว้ การใช้ cache มักจะทำให้ถูกกว่า

Endpoint ที่รองรับ
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-fable-5:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
เมธอด POST · application/json
การยืนยันตัวตน Bearer token (คีย์ API)
ขีดจำกัดอัตรา 60 req/min
โหลดที่ทดสอบแล้ว 🟡 ปานกลาง สูงสุด 21/s · ต่อเนื่อง 4.0/s
ความหน่วง p95 13,224 ms
ประเภท API ข้อความ

หมายเหตุ

Due to fluctuations in supply costs, I had to slightly raise the price of the model. Hope you guys understand. A special thanks to xaviersacharpollster for your support!.

แบ่งปัน

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "devdoclang/claude-fable-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-fable-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-fable-5",
    "messages": [
        {
            "role": "user",
            "content": "สวัสดี คุณคือใคร?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "devdoclang/claude-fable-5",
    "messages": [
        {
            "role": "user",
            "content": "สวัสดี คุณคือใคร?"
        }
    ]
}

ลองใช้

ส่ง prompt ด้วยคีย์ API ของคุณ — ใช้เครดิตจริง สตรีมกลับทันที

รีวิวและความคิดเห็น
3.0 / 1 รีวิว
กำลังโหลดรีวิว...
ติดต่อฝ่ายสนับสนุน
เราพร้อมช่วยเหลือคุณเสมอ