Skip to main content
GET
/
models
List available models
curl --request GET \
  --url https://{defaultHost}/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "claude-3-5-sonnet",
      "object": "model",
      "created": 1686935002,
      "owned_by": "Celestial Farming Corp"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

ok

A paginated-style list wrapper that mirrors OpenAI's style.
The top-level object is a fixed string of "list", and data contains Model items.

object
enum<string>
required

Fixed discriminator for list payloads.

Available options:
list
Example:

"list"

data
Model · object[]
required

The returned models.