Get single AI model by ID
AI Models
Get single AI model by ID
Returns a single AiModel registry entry (provider plus its available models) by _id. Used by admin pages when drilling into a specific provider.
GET
Get single AI model by ID
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
AI model returned
Available options:
true An AiModel registry entry (provider plus its available models).
Example:
{
"_id": "5f7b1c2e8a1d4e0012c3b4a5",
"providerName": "Anthropic",
"vercelUniqueName": "anthropic",
"websiteUrl": "https://www.anthropic.com",
"modelDetails": [
{
"modelName": "claude-sonnet-4-6",
"description": "Latest Sonnet release."
},
{
"modelName": "claude-haiku-4-5",
"description": "Fast, cost-efficient Haiku."
}
],
"createdAt": "2025-09-12T14:22:10.000Z",
"updatedAt": "2026-04-30T09:11:45.000Z"
}