beatra

Models & Catalog API

Preview: list models and inspect capability metadata.

Status: Preview. Useful for discovery and evaluation; handle metadata changes and missing fields before GA.

Three endpoints help you discover account-visible models before deciding between model: "auto" and a pinned id.

Endpoints

EndpointPurpose
GET /v1/modelsOpenAI-compatible flat list for discovery
GET /v1/catalog/modelsRicher model metadata (capabilities, modalities)
GET /v1/catalog/capabilitiesWhat you can do today, capability by capability

Example: list models

curl https://api.beatra.ai/v1/models \
  -H "Authorization: Bearer $BEATRA_API_KEY"
{
  "object": "list",
  "data": [
    { "id": "<model-id>", "object": "model", "owned_by": "beatra" }
  ]
}

The set is your account's view. Models can appear and disappear as enablement changes; cache for short periods only.

Operation pages

On this page