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

# List models

> GET /v1/models

Return all available models and their prices. No authentication required.

```
GET https://api.heyaskr.ai/v1/models
```

## Query parameters

<ParamField query="type" type="string">
  Filter by modality, comma-separated: `chat`, `image`, `video`, `audio`,
  `embedding`, or `all`.
</ParamField>

## Response

<ResponseField name="data" type="array">
  Array of model objects. Each includes `id`, `name`, modality, and pricing.
</ResponseField>

```json theme={null}
{
  "data": [
    {
      "id": "flux-1.1-pro",
      "name": "FLUX 1.1 Pro",
      "type": "image",
      "price": { "per_image": 0.04 }
    }
  ]
}
```
