> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dolphy.chat/llms.txt
> Use this file to discover all available pages before exploring further.

# Models

> GET /v1/models — list every model available on the Dolphy API.

## Endpoint

```
GET https://dolphy.chat/api/v1/models
```

OpenAI-compatible model listing. Returns `{ object: "list", data: [...] }`
with one object per model.

## Response shape

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "dolphy-chat-1",
      "object": "model",
      "owned_by": "dolphy",
      "capabilities": ["chat", "completion", "streaming"],
      "pricing": { "credits_per_10k_tokens": 1 }
    },
    {
      "id": "seedream-v4",
      "object": "model",
      "owned_by": "dolphy",
      "capabilities": ["image-generation"],
      "provider": "Specialty",
      "description": "Photorealistic image generation",
      "pricing": { "credits_per_image": 1 }
    }
    // …
  ]
}
```

Each model includes:

* `id` — pass this string in the relevant endpoint's `model` field
* `capabilities` — what kind of endpoint accepts it
* `pricing` — credit cost (per image, per 10k tokens, etc.)
* `provider` (image gen only) — labelling for UI grouping
