LLM models
Claude Sonnet 5
On this page
Claude Sonnet 5 — frontier reasoning and generation through one API.
| modelId | claude-sonnet-5 |
| Modality | text |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Default | claude-sonnet-5 | POST /api/v1/generate | prompt |
| Poll task | — | GET /api/v1/task/{id}?model=claude-sonnet-5 | — |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text value (default: In exactly three sentences, explain why the ocean looks blue but a glass of seawater looks clear.) |
| memory | boolean | No | Automatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false) |
| function_calling | boolean | No | Lets you define functions that Gemini can call (true/false) (default: false) |
| thinking | boolean | No | Include the model's thinking process in the response (true/false) (default: true) |
| max_tokens | number | No | Optional Claude output token limit. Leave empty to use the default of 4096. (range 1-128000) |
| stream | boolean | No | Turn off to get a single non-streaming response. (true/false) (default: true) |
| system | string | No | System instruction for the model. Defaults to "You are Claude Sonnet 5, developed by Anthropic." when omitted. |
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-sonnet-5","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"function_calling":false,"thinking":true,"max_tokens":1,"stream":true}}'