ModelBeatbeta

List available models

Returns the ModelBeat model catalog in the OpenAI `/v1/models` list shape. Authenticated and rate-limited, but never metered — no balance hold is taken. The catalog is served from the ModelBeat registry, not from any upstream provider. It lists only models ModelBeat serves, with `owned_by: "modelbeat"`.

GET
/models

Returns the ModelBeat model catalog in the OpenAI /v1/models list shape. Authenticated and rate-limited, but never metered — no balance hold is taken.

The catalog is served from the ModelBeat registry, not from any upstream provider. It lists only models ModelBeat serves, with owned_by: "modelbeat".

Authorization

bearerAuth
AuthorizationBearer <token>

A ModelBeat API key, prefixed mb_live_, sent as Authorization: Bearer <key>.

Keys are issued in the ModelBeat console and are scoped to one tenant. The example value used throughout this document (mb_live_EXAMPLE_NOT_A_REAL_KEY_00000000000000000000) is a placeholder and will not authenticate.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/models"
{  "object": "list",  "data": [    {      "id": "string",      "object": "model",      "created": 0,      "owned_by": "modelbeat"    }  ]}