Hello @Rico,
It is still possible, but the model you are trying to use is not available in Anthropic.
You can use the List Models API endpoint from Anthropic to verify it.
curl https://api.anthropic.com/v1/models \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"
You can do it by using Make’s Make an API Call module
List of models available for 14th of April 2026
[
{
"id": "claude-sonnet-4-6",
"display_name": "Claude Sonnet 4.6",
...
},
{
"id": "claude-opus-4-6",
"display_name": "Claude Opus 4.6"
},
{
"id": "claude-opus-4-5-20251101",
"display_name": "Claude Opus 4.5"
},
{
"id": "claude-haiku-4-5-20251001",
"display_name": "Claude Haiku 4.5"
},
{
"id": "claude-sonnet-4-5-20250929",
"display_name": "Claude Sonnet 4.5"
},
{
"id": "claude-opus-4-1-20250805",
"display_name": "Claude Opus 4.1"
},
{
"id": "claude-opus-4-20250514",
"display_name": "Claude Opus 4"
},
{
"id": "claude-sonnet-4-20250514",
"display_name": "Claude Sonnet 4"
},
{
"id": "claude-3-haiku-20240307",
"display_name": "Claude Haiku 3"
}
]
You can also toggle off Map switch, select model and change it back to map- it will show you parameter- for example claude-opus-4-6
For Anthropic models thinking is enabled via body:
{
"model": "claude-sonnet-4-6",
"max_tokens": 16000,
"thinking": {
"type": "enabled",
"budget_tokens": 10000
},
"messages": [
{
"role": "user",
"content": "..."
}
],
...
}
Thinking uses the same model - it simply changes how the model behaves and allocates tokens for reasoning.
Source:
That’s why claude-sonnet-4-6-thinking is not working for you- it simply does not exist.
Hope it helps!
Have a nice day,
Michal