Skip to content
Docs menu

LLM models

Claude Sonnet 4.6

On this page

Claude Sonnet 4.6 — frontier reasoning and generation through one API.

modelIdclaude-sonnet-4-6
Modalitytext
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Defaultclaude-sonnet-4-6POST /api/v1/generateprompt
Poll taskGET /api/v1/task/{id}?model=claude-sonnet-4-6

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (example: Write a punchy, memorable product tagline for a solar-powered hiking backpack, then explain your reasoning in one crisp line.)
memorybooleanNoAutomatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false)
thinkingbooleanNoInclude the model's thinking process in the response (true/false) (default: true)
max_tokensnumberNoOptional Claude output token limit. Leave empty to use the default of 4096. (range 1-128000)
streambooleanNoSend true to receive the reply as an event stream (Content-Type: text/event-stream). Omit it and you get a single JSON response — streaming is opt-in on this endpoint. (true/false) (example: true)
systemstringNoSystem instruction for the model. Defaults to "You are Claude Sonnet 4.6, developed by Anthropic." when omitted.
messagesarrayNoA conversation instead of a single `prompt`: up to 20 objects of { "role", "content" }, where role is user, assistant or system. Send `prompt` or `messages`, not both. Do not flatten a conversation into one prompt with "User:" / "Assistant:" labels — the model reads that as a single message, and a model using web search then searches for the whole block instead of your question.

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-4-6","input":{"prompt":"Write a punchy, memorable product tagline for a solar-powered hiking backpack, then explain your reasoning in one crisp line.","memory":false,"thinking":true,"max_tokens":1,"stream":true}}'