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

Planned 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.

Request Example

Terminal
Planned 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

Planned 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.

Field Differences from OpenAI Protocol

FieldOpenAI ProtocolAnthropic Protocol
Type identifier"object": "model""type": "model"
Namenamedisplay_name
Creation timecreated (Unix timestamp)created_at (ISO 8601)

Filter Models by Provider

Planned 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.

Path Parameters

ParameterTypeDescription
providerstringProvider identifier, e.g. anthropic, openai, google

Request Example

Terminal
Planned 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

Planned 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.

Path Parameters

ParameterTypeDescription
providerstringProvider identifier, e.g. anthropic
model_idstringModel name, e.g. claude-sonnet-4.6

Request Example

Terminal
Planned 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.