List models

Returns the catalog of models available to your key. Authentication is optional — the model catalog is the same for everyone.

Endpoint

GET/v1/modelsList available Mira models

Examples

bash
curl https://api.vmira.ai/v1/models
python
from openai import OpenAI

client = OpenAI(api_key="sk-mira-...", base_url="https://api.vmira.ai/v1")
for m in client.models.list().data:
    print(m.id)

Response

json
{
  "object": "list",
  "data": [
    {
      "id": "mira",
      "object": "model",
      "created": 1714867200,
      "owned_by": "vmira"
    },
    {
      "id": "mira-thinking",
      "object": "model",
      "created": 1714867200,
      "owned_by": "vmira"
    }
  ]
}

Object fields

FieldTypeDescription
idstringModel identifier — pass this as `model` in /v1/chat/completions.
objectstringAlways `model`.
createdintegerUnix timestamp (seconds) when the model was first published.
owned_bystringAlways `vmira` for Mira models.
Fetch this at startup instead of hardcoding model IDs — your app picks up new Mira models automatically when they ship.

Pricing

Per-token rates live on the platform pricing page.