Skip to content
Docs menu

LLM models

Claude Sonnet 4.5

On this page

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

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

Operations

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

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (default: Explain the difference between weather and climate to a curious ten-year-old, in three clear and memorable sentences.)
memorybooleanNoAutomatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false)
structured_outputsbooleanNoGenerate structured outputs (true/false) (default: false)
function_callingbooleanNoLets you define functions that Gemini can call (true/false) (default: false)
web_searchbooleanNoUse Web Access (true/false) (default: true)
thinkingbooleanNoInclude the model's thinking process in the response (true/false) (default: true)
reasoning_effortstringNoControl reasoning depth: Low for faster responses, High for deeper analysis (options: Low | High) (default: High)
max_tokensnumberNoOptional Claude output token limit. Leave empty to use the default of 4096. (range 1-128000)
streambooleanNoTurn off to get a single non-streaming response. (true/false) (default: true)
systemstringNoSystem instruction for the model. Defaults to "You are Claude Sonnet 4.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-4-5","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"structured_outputs":false,"function_calling":false,"web_search":true,"thinking":true,"reasoning_effort":"High","max_tokens":1,"stream":true}}'