LLM models
Claude Haiku 4.5
On this page
Claude Haiku 4.5 — frontier reasoning and generation through one API.
| modelId | claude-haiku-4-5 |
| Modality | text |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to completion | POST /api/v1/generate | Base generation from a text prompt. |
| Poll task | GET /api/v1/task/{id}?model=claude-haiku-4-5 | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | Send a message |
| MODEL | text | optional | — |
| memory | select | optional | false, true |
| function_calling | select | optional | false, true |
| max_tokens | number | optional | 4096 |
| stream | select | optional | false, true |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"claude-haiku-4-5","input":{"prompt":"Summarize the plot of a classic bank-heist film in exactly three suspenseful sentences, no spoilers past the setup.","MODEL":"claude-haiku-4-5","memory":"false","function_calling":"false","max_tokens":8,"stream":"true"}}'