API Reference
GET/v1/models

Models

Lists the models currently available through the public API.

curl
curl https://api.dravenai.lat/v1/models \
  -H "Authorization: Bearer sk-drv-..."
200 OK
{
  "object": "list",
  "data": [
    {
      "id": "your-model-id",
      "object": "model",
      "created": 1750000000,
      "owned_by": "dravenai"
    }
  ]
}

Available models

The table below is not a hardcoded list — it's fetched live from https://api.dravenai.lat/v1/models the first time you open this page (cached for the rest of your browsing session, so it won't re-fetch on every visit within the same tab). It covers every modality the API serves: chat, image generation, embeddings, rerank, text-to-speech, and tools.

Model ids

Public model ids follow an owner/model convention, the same one used by OpenRouter. Always pass the exact id string from the table above as the model field in Chat Completions or the corresponding endpoint for that model's type — internal model names are never exposed.

The catalog is expected to grow. Since /v1/models always reflects what's currently enabled, it's safer to fetch it at runtime than to hardcode a model id in long-lived code.
GET /v1/models is fully public — no Authorization header needed, no CORS restriction. Anyone (including this page) can call it directly from the browser.