What it accepts
- text
Canonical model
Claude Haiku 4 5 20251001 through Clervo's normalized chat contract.
clervo/claude-haiku-4-5-20251001Current contract
/v1/ai/execute
Replay-safe with the original idempotency key.
Published pricing
Billing mode: metered. Payment: x402 or mpp. For a paid call, inspect the exact request-bound challenge before authorizing it. Internal serving suppliers are not publicly disclosed.
B11 TypeScript client
import { ClervoClient } from '@clervo/sdk';
const clervo = new ClervoClient();
const result = await clervo.ai.execute({
model: 'clervo/claude-haiku-4-5-20251001',
input: {
kind: 'chat',
messages: [{ role: 'user', content: 'Return one useful, bounded result.' }],
responseFormat: 'text',
stream: false,
},
maximumOutputTokens: 256
}, { idempotencyKey: 'stable-request-0001' });Automatic payment remains off unless explicitly enabled. Reuse the same idempotency key to recover or replay; reconcile unknown settlement before retrying.
Related inventory