Skip to main content
GET
/
v1
/
models
List models
curl --request GET \
  --url https://api.example.com/v1/models \
  --header 'X-API-Key: <api-key>'
[
  {
    "architecture": {
      "instruct_type": "<string>",
      "modalities": [
        {
          "modality_type": "<string>",
          "modality_value": "<string>"
        }
      ],
      "modality": "<string>",
      "tokenizer": "<string>"
    },
    "author": "<string>",
    "context_length": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "default_parameters": {
      "parameters": {
        "frequency_penalty": 123,
        "logprobs": true,
        "max_completion_tokens": 123,
        "max_tokens": 123,
        "min_p": 123,
        "n": 123,
        "parallel_tool_calls": true,
        "seed": 123,
        "stop_sequences": [
          "<string>"
        ],
        "store": true,
        "temperature": 123,
        "top_a": 123,
        "top_k": 123,
        "top_logprobs": 123,
        "top_p": 123
      }
    },
    "description": "<string>",
    "display_name": "<string>",
    "id": 123,
    "last_updated": "2023-11-07T05:31:56Z",
    "model_name": "<string>",
    "pricing": {
      "completion_cost": "<string>",
      "image_cost": "<string>",
      "internal_reasoning_cost": "<string>",
      "prompt_cost": "<string>",
      "request_cost": "<string>",
      "web_search_cost": "<string>"
    },
    "providers": [
      {
        "context_length": 123,
        "is_zdr": "<string>",
        "max_completion_tokens": 123,
        "max_prompt_tokens": 123,
        "name": "<string>",
        "pricing": {
          "audio_cost": "<string>",
          "completion_cost": "<string>",
          "discount": "<string>",
          "image_cost": "<string>",
          "image_output_cost": "<string>",
          "input_audio_cache_cost": "<string>",
          "input_cache_read_cost": "<string>",
          "input_cache_write_cost": "<string>",
          "prompt_cost": "<string>",
          "request_cost": "<string>"
        },
        "provider_model_name": "<string>",
        "provider_name": "<string>",
        "quantization": "<string>",
        "status": 123,
        "supports_implicit_caching": "<string>",
        "tag": "<string>",
        "uptime_last_30m": "<string>"
      }
    ],
    "supported_parameters": [
      {
        "parameter_name": "<string>"
      }
    ],
    "top_provider": {
      "context_length": 123,
      "is_moderated": "<string>",
      "max_completion_tokens": 123
    }
  }
]

Authorizations

X-API-Key
string
header
required

Query Parameters

author
string
Example:

"anthropic"

model_name
string
Example:

"claude-sonnet-4-5"

provider
string
Example:

"anthropic"

provider_tag
string
Example:

"anthropic"

input_modality
string
Example:

"text"

output_modality
string
Example:

"text"

min_context_length
integer | null
Example:

8192

max_prompt_cost
string | null
Example:

"0.000005"

max_completion_cost
string | null
Example:

"0.000015"

supported_param
string
Example:

"tools"

status
integer | null
Example:

0

quantization
string
Example:

"fp16"

Response

200 - application/json

OK

architecture
object
author
string
context_length
integer
created_at
string<date-time>
default_parameters
object
description
string
display_name
string
id
integer<int64>
last_updated
string<date-time>
model_name
string
pricing
object
providers
object[] | null
supported_parameters
object[] | null
top_provider
object