GET

/v1/schemas/anthropic/chat/v1%2Fmessages

kind inputactivity chathash 088c4abaextracted Jul 25, 2026version currentsource upstream spec ↗

Request body

18 properties · 3 required · 97 $defs
propertytypedescriptionconstraints
model*stringThe model that will complete your prompt.17 known values
messages*InputMessage[]Input messages.
max_tokens*integerThe maximum number of tokens to generate before stopping.n ≥ 0
cache_controlCacheControlEphemeralTop-level cache control automatically applies a cache_control marker to the last cacheable block in the request.nullable
containerstringContainer identifier for reuse across requests.nullable
inference_geostringSpecifies the geographic region for inference processing. If not specified, the workspace's `default_inference_geo` is used.nullable
metadataMetadataAn object describing metadata about the request.
output_configOutputConfigConfiguration options for the model's output, such as the output format.
service_tierenumDetermines whether to use priority capacity (if available) or standard capacity for this request.auto | standard_only
stop_sequencesstring[]Custom text sequences that will cause the model to stop generating.
streambooleanWhether to incrementally stream the response using server-sent events.
systemstring | RequestTextBlock[]System prompt.
temperaturenumberAmount of randomness injected into the response.0 ≤ n ≤ 1 · deprecated
thinkingThinkingConfigEnabled | ThinkingConfigDi…Configuration for enabling Claude's extended thinking.
tool_choiceToolChoiceAuto | ToolChoiceAny | ToolCho…How the model should use the provided tools. The model can use a specific tool, any available tool, decide by itself, or not use tools at all.
toolsTool | BashTool_20250124 | CodeExecutionTool_20250522[]Definitions of tools that the model may use.
top_kintegerOnly sample from the top K options for each subsequent token.n ≥ 0 · deprecated
top_pnumberUse nucleus sampling.0 ≤ n ≤ 1 · deprecated

Validate a payload

before you spend tokens
shell
$ curl -X POST https://modelschemas.com/v1/validate \
    -d '{"provider":"anthropic","endpointId":"v1/messages","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}