Skip to main content
GET
/
models
List models
curl --request GET \
  --url https://api.ai-stats.phaseo.app/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "limit": 123,
  "offset": 123,
  "total": 123,
  "models": [
    {
      "model_id": "<string>",
      "name": "<string>",
      "release_date": "<string>",
      "status": "<string>",
      "organisation_id": "<string>",
      "aliases": [
        "<string>"
      ],
      "endpoints": [
        "<string>"
      ],
      "input_types": [
        "<string>"
      ],
      "output_types": [
        "<string>"
      ],
      "providers": [
        {
          "api_provider_id": "<string>",
          "params": [
            "<string>"
          ]
        }
      ]
    }
  ]
}

Response

{
  "ok": true,
  "limit": 50,
  "offset": 0,
  "total": 123,
  "models": [
    {
      "model_id": "openai/gpt-4o-mini",
      "name": "GPT-4o Mini",
      "release_date": "2024-07-18",
      "status": "active",
      "organisation_id": "openai",
      "aliases": ["gpt-4o-mini"],
      "endpoints": ["chat/completions", "responses"],
      "input_types": ["text"],
      "output_types": ["text"],
      "providers": [
        {
          "api_provider_id": "openai",
          "params": ["temperature", "max_tokens"]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

endpoints
string[]

Filter by endpoints

organisation

Filter by organisation Organisation identifier.

Available options:
ai21,
amazon,
anthropic,
baidu,
black-forest-labs,
bytedance,
cohere,
deepseek,
eleven-labs,
essential-ai,
google,
ibm,
inclusionai,
lg,
meta,
microsoft,
minimax,
mistral,
moonshotai,
nous,
nvidia,
openai,
perplexity,
qwen,
suno,
x-ai,
z-ai
input_types
string[]

Filter by input types

output_types
string[]

Filter by output types

params
string[]

Filter by params

limit
integer
default:50

Limit the number of results

Required range: 1 <= x <= 250
offset
integer
default:0

Offset for pagination

Required range: x >= 0

Response

List of models

ok
boolean
limit
integer
offset
integer
total
integer
models
object[]