Skip to main content
GET
/
v1
/
models
/
{model_id}
Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.auriko.ai/v1",
    api_key="YOUR_AURIKO_API_KEY",
)
model = client.models.retrieve("claude-sonnet-4-6")
print(model.id, model.owned_by)
{
  "id": "claude-sonnet-4-6",
  "object": "model",
  "created": 1776656101,
  "owned_by": "auriko",
  "providers": [
    {
      "name": "anthropic",
      "input_price": 3,
      "output_price": 15,
      "data_policy": "no_training"
    }
  ]
}
Returns details for a single model, including provider availability and pricing. You can pass a canonical model ID (e.g. claude-sonnet-4-6) or an alias (e.g. gpt-4o-mini). Aliases resolve to the canonical ID in the response.
All parameters, request/response schemas, and examples are auto-generated from the OpenAPI specification.

Authorizations

Authorization
string
header
required

API key authentication. Keys start with ak_ prefix. Example: Authorization: Bearer ak_live_xxxxxxxxxxxx

Path Parameters

model_id
string
required

Canonical model ID or alias. Aliases (e.g. gpt-4o-mini) are resolved to the canonical ID (e.g. gpt-4o-mini-2024-07-18).

Response

Model details

Model information with provider availability

id
string
required

Canonical model ID

object
string
required
Allowed value: "model"
created
integer
required

Unix timestamp

owned_by
string
required

Always "auriko"

providers
object[]

Auriko extension: Available providers with pricing.

Allows clients to see all available options for this model.