Models
24 models from 6 providers. All callable through one endpoint.
Clervo Aliases
Stable IDs with automatic routing. The underlying provider may change; the interface stays the same.
| Model | Price | Latency | Capabilities | Routes to |
|---|---|---|---|---|
clervo/fast | Free | 170ms | text, json | groq/llama-3.1-8b-instant |
clervo/smart | Free | 1.6s | text, json, reasoning | sambanova/deepseek-v3.2 |
clervo/code | $0.015 | 2.6s | text, json, code | tongkhokr/claude-sonnet-5 |
clervo/deep | Free | 9.4s | text, json, reasoning | hcn/deepseek-v4-pro |
clervo/search | Free | <1s | search | Built-in |
Free Models
No payment required. Sponsored by provider free tiers during launch.
| Model | Provider | Latency | Capabilities |
|---|---|---|---|
groq/llama-3.1-8b-instant | Groq | 170ms | text, json |
groq/llama-3.3-70b | Groq | 800ms | text, json, reasoning |
sambanova/deepseek-v3.2 | SambaNova | 1.6s | text, json, reasoning |
sambanova/llama-3.3-70b | SambaNova | 1.5s | text, json, reasoning |
hcn/qwen3.6-35b | HCN | 942ms | text, json |
hcn/step-3.7-flash | HCN | 3.2s | text, json, reasoning |
hcn/deepseek-v4-pro | HCN | 9.4s | text, json, reasoning, code |
hcn/auto | HCN | 2-5s | text, json, reasoning |
Paid Models
Pay per request via x402 USDC on Solana.
| Model | Price | Latency | Capabilities |
|---|---|---|---|
tongkhokr/claude-haiku-4.5 | $0.002 | 1-2s | text, json |
quickai/gpt-5.4-mini | $0.005 | 2-4s | text, json |
quickai/gpt-5.6-luna | $0.007 | 2-4s | text, json |
tongkhokr/claude-sonnet-4.6 | $0.015 | 2-3s | text, json, reasoning, code |
tongkhokr/claude-sonnet-5 | $0.015 | 2-3s | text, json, reasoning, code |
quickai/gpt-5.4 | $0.018 | 2-4s | text, json |
quickai/gpt-5.6-terra | $0.018 | 2-4s | text, json |
quickai/gpt-5.5 | $0.035 | 2-4s | text, json |
quickai/gpt-5.6-sol | $0.035 | 2-4s | text, json |
tongkhokr/claude-opus-4.7 | $0.084 | 2-3s | text, json, reasoning, code |
tongkhokr/claude-opus-5 | $0.084 | 2-3s | text, json, reasoning, code |
Usage
bash
# Free model curl https://api.clervo.dev/v1/chat/completions \ -H "content-type: application/json" \ -d '{"model":"clervo/fast","messages":[{"role":"user","content":"Hello"}]}' # Paid model — triggers x402 flow curl https://api.clervo.dev/v1/chat/completions \ -H "content-type: application/json" \ -H "x-clervo-funding: paid" \ -d '{"model":"tongkhokr/claude-haiku-4.5","messages":[{"role":"user","content":"Hello"}]}'