Skip to content
Docs menu

LLM models

Claude Opus 4.6

On this page

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

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

Operations

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

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (default: Describe the life of a single raindrop from storm cloud to mountain river in three lyrical, sensory sentences.)
memorybooleanNoAutomatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false)
function_callingbooleanNoLets you define functions that Gemini can call (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)
streambooleanNoTurn off to get a single non-streaming response. (true/false) (default: true)
systemstringNoSystem instruction for the model. Defaults to "You are Claude Opus 4.6, 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-opus-4-6","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"function_calling":false,"thinking":true,"max_tokens":1,"stream":true}}'