Model Rover

List Models

List the models currently callable with the authenticated platform key.

GET /v1/models

Returns the current callable model catalog in an OpenAI-compatible list shape. Authentication is required.

curl "http://127.0.0.1:11113/v1/models" -H "Authorization: Bearer $API_KEY"

Response

{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-5.2",
      "object": "model",
      "created": 1767225600,
      "owned_by": "openai"
    }
  ]
}
FieldTypeDescription
objectstringAlways list.
dataarrayModels enabled and callable in the current gateway snapshot.
data[].idstringComplete public model ID to send to inference endpoints.
data[].objectstringAlways model.
data[].createdintegerModel creation timestamp in Unix seconds.
data[].owned_bystringManufacturer slug, derived from the public ID prefix.

The endpoint is not paginated. It intentionally exposes only protocol-neutral identity fields; capability, context, and current pricing details remain on the Models page.

Catalog changes

Models can be enabled, disabled, or repriced without a client release. Resolve model IDs from this endpoint or the Models page instead of maintaining a permanent static list.

Help us improve this page

Found something unclear, outdated, or incorrect?

Last updated on