Claude
Claude Text

devdoclang/claude-fable-5

ID modello: devdoclang/claude-fable-5
Famiglia
Claude
Context
1,000,000
Importo minimo / request
0.00062 €
Tasso di cache
11.9%
Request
705
Successo
93.5%
Tokens
36.93M
Uptime
24 ore faAdesso
7 giorni faAdesso

Listino prezzi

Input / 1M token
0.331 €
Output / 1M token
0.455 €
Importo minimo / request
0.00062 €
Prompt Cache 11.9%
Cache lettura / 1M token
0.322 €
Cache scrittura / 1M token
0.471 €

I prompt ripetuti vengono memorizzati nella cache — le letture costano molto meno dell'input e l'applicazione è automatica tramite API.

Cronologia prezzi

I livelli di prezzo applicati nel tempo. La riga contrassegnata "attuale" è il prezzo in uso.

Precedente Dal 29/07/2026 - 20:05:29
Input / 1M token0.172 € Output / 1M token0.31 € Importo minimo / request0.000517 € Cache lettura / 1M token0.137 € Cache scrittura / 1M token0.172 €
Precedente Dal 02/08/2026 - 11:54:52
Input / 1M token0.413 € Output / 1M token0.62 € Cache lettura / 1M token0.372 € Cache scrittura / 1M token0.475 €
Precedente Dal 03/08/2026 - 23:11:25
Input / 1M token0.335 € Output / 1M token0.537 € Cache lettura / 1M token0.289 € Cache scrittura / 1M token0.413 €
Precedente Dal 05/08/2026 - 18:25:47
Input / 1M token0.268 € Output / 1M token0.393 € Importo minimo / request0.000827 € Cache lettura / 1M token0.227 € Cache scrittura / 1M token0.31 €
Precedente Dal 08/08/2026 - 11:44:33
Input / 1M token0.331 € Output / 1M token0.455 € Importo minimo / request0.00062 € Cache lettura / 1M token0.268 € Cache scrittura / 1M token0.393 €
Attuale Dal 13/08/2026 - 00:18:58
Input / 1M token0.331 € Output / 1M token0.455 € Importo minimo / request0.00062 € Cache lettura / 1M token0.322 € Cache scrittura / 1M token0.471 €
Stima dei costi
Totale stimato 0 €
Media / request 0 €

Stima basata sui prezzi pubblicati. Con la cache di solito costa meno.

Endpoint supportati
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
Metodo POST · application/json
Autenticazione Bearer token (API key)
Rate limit 60 req/min
Carico testato 🟡 Medium picco 21/s · sostenuto 4.0/s
Latenza p95 13,224 ms
Tipi di API Text

Note tecniche

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!.

Condividi

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": "Ciao, chi sei?"
        }
    ]
}'
// 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": "Ciao, chi sei?"
        }
    ]
})
});
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": "Ciao, chi sei?"
        }
    ]
}

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": "Ciao, chi sei?"
        }
    ]
}

Prova subito

Invia un prompt con la tua API key — usa crediti reali e la risposta arriva in streaming all'istante.

Recensioni e commenti
3.0 / 1 recensioni
Caricamento delle recensioni...
Contatta il supporto
Siamo sempre pronti ad aiutarla