Skip to main content

List models

Lists the currently available models, and provides basic information about each one such as the owner and availability.

Request

GET https://api.azerion.ai/v1/models

Returns

A list of model objects.

Example request

curl https://api.azerion.ai/v1/models \
-H "Authorization: Bearer $AZERION_API_KEY"

Example response

{
"object": "list",
"data": [
{
"id": "anthropic.claude-opus-4-20250514-v1:0",
"object": "model",
"created": 1748885583,
"owned_by": "system"
},
{
"id": "deepseek.r1-v1:0-hwc",
"object": "model",
"created": 1747836849,
"owned_by": "system"
},
{
"id": "qwen2_5-14b-instruct",
"object": "model",
"created": 1747406621,
"owned_by": "system"
}
]
}

The model object

Describes an Azerion Intelligence model offering that can be used with the API.

Properties

  • id string
    The model identifier, which can be referenced in the API endpoints.

  • object string
    The object type, which is always "model".

  • created integer
    The Unix timestamp (in seconds) when the model was created.

  • owned_by string
    The organization that owns the model.