Source: https://docs.sogni.ai/api-reference/llm-models/

# LLM Models

Discover the LLMs available to your account. The catalog rotates as workers come online, so consult the live endpoint rather than hardcoding model IDs. For image, video, and audio generation models, use the [public model catalog](https://docs.sogni.ai/api-reference/model-discovery/).

### GET /v1/models

Lists the LLM models in the current catalog, in the OpenAI list shape. The list is the same for every account.

### [#](https://docs.sogni.ai/api-reference/llm-models/#request)Request

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

```javascript
const res = await fetch('https://api.sogni.ai/v1/models', {
  headers: { Authorization: `Bearer ${process.env.SOGNI_API_KEY}` },
});
const { data } = await res.json();
```

```python
import os
from openai import OpenAI

client = OpenAI(base_url="https://api.sogni.ai/v1", api_key=os.environ["SOGNI_API_KEY"])
models = client.models.list()
```

### [#](https://docs.sogni.ai/api-reference/llm-models/#response)Response

```json
{
  "object": "list",
  "data": [
    {
      "id": "qwen3.6-35b-a3b-gguf-iq4xs",
      "object": "model",
      "created": 1776384000,
      "owned_by": "qwen",
      "capabilities": { "reasoning": true }
    },
    {
      "id": "deepseek-v4-flash-vision-exp-dspark-1m",
      "object": "model",
      "created": 1788998400,
      "owned_by": "deepseek",
      "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

Returns a single model record. An unknown id returns `404` with `code: "model_not_found"`. A retired model id that has a replacement returns the replacement's record.

### [#](https://docs.sogni.ai/api-reference/llm-models/#path-parameters)Path parameters

| Name | Type | In | Description |
| --- | --- | --- | --- |
| model\_idrequired | string | path | An ID from `GET /v1/models`. |
