Get a Model
/v1/models/{model_id}?beta=true
Get a specific model.
The Models API response can be used to determine information about a specific model or resolve a model alias to a model ID.
Path Parameters
model_id: string
Model identifier or alias.
Header Parameters
Returns
Get a Model
cURL
curl https://api.anthropic.com/v1/models/$MODEL_ID?beta=true \
-H "X-Api-Key: $ANTHROPIC_API_KEY"{
"id": "claude-sonnet-4-20250514",
"created_at": "2025-02-19T00:00:00Z",
"display_name": "Claude Sonnet 4",
"type": "model"
}Returns Examples
{
"id": "claude-sonnet-4-20250514",
"created_at": "2025-02-19T00:00:00Z",
"display_name": "Claude Sonnet 4",
"type": "model"
}