← Docs API Reference
Get an API key →
API ReferenceLLM Models

LLM Models

Surface · Catalog

#Models

Discover LLMs available to your account. The exact catalog rotates as new workers come online — always consult the live endpoint rather than hardcoding model IDs.

GET /v1/models Auth required

List the LLM models currently routable for the caller's account.

$ curl https://api.sogni.ai/v1/models \
  -H "Authorization: Bearer $SOGNI_API_KEY"

#Response

{
  "object": "list",
  "data": [
    {
      "id": "qwen3.6-35b-a3b-gguf-iq4xs",
      "object": "model",
      "created": 1776384000,
      "owned_by": "qwen",
      "capabilities": { "reasoning": true }
    },
    {
      "id": "qwen3.5-35b-a3b-abliterated-gguf-q4km",
      "object": "model",
      "created": 1772582400,
      "owned_by": "qwen",
      "capabilities": { "reasoning": true }
    }
  ]
}
GET /v1/models/:model_id Auth required

Read a single model record.

#Path parameters

NameTypeInDescription
model_id*stringpathAn ID from GET /v1/models.