curl --request POST \
--url https://api.example.com/anthropic/v1/messages \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"messages": [
{}
],
"max_tokens": 123,
"system": "<string>",
"stop_sequences": [
"<string>"
],
"stream": false,
"temperature": 1,
"top_p": 123,
"top_k": 123,
"metadata": {},
"tools": [
{
"name": "<string>",
"input_schema": {},
"description": "<string>"
}
],
"tool_choice": {},
"thinking": {
"enabled": true
}
}
'