Anthropic Models API
Query available models on the kineticRouter platform through the Anthropic native protocol. The response format follows the Anthropic API specification (type, display_name, created_at, etc.).
Like every kineticRouter API, the Models API requires a kineticRouter API Key. For Anthropic, send it as x-api-key: <your KINETICROUTER_API_KEY>. This endpoint returns all models accessible via the Anthropic protocol, not limited to the Claude series.
List All Models
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Request Example
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Response Format
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Field Differences from OpenAI Protocol
| Field | OpenAI Protocol | Anthropic Protocol |
|---|---|---|
| Type identifier | "object": "model" | "type": "model" |
| Name | name | display_name |
| Creation time | created (Unix timestamp) | created_at (ISO 8601) |
Filter Models by Provider
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
provider | string | Provider identifier, e.g. anthropic, openai, google |
Request Example
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Response Format
The response format is the same as listing all models, with the data array containing only models from the specified provider.
Get Model Details
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
provider | string | Provider identifier, e.g. anthropic |
model_id | string | Model name, e.g. claude-sonnet-4.6 |
Request Example
The Anthropic-native route is planned and its configuration is shown only as a reference. This example is intentionally not copyable in its current display state.
Response Format
Returns a single Model object with the same structure as objects in the list endpoint.