# List Models

List every model available to the key.

`GET /api/v1/models`

## Overview

Returns the catalogue visible to the calling key, including per-model pricing metadata used by the dashboard.

## Parameters

- `modality` (string): Filter by modality, e.g. video.
- `provider` (string): Filter by provider name.

## Example

```bash
curl https://capi.ai/api/v1/models?modality=video \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Response

```json
{
  "object": "list",
  "data": [
    {
      "id": "kling-v3-turbo-text-to-video",
      "provider": "Kling",
      "modality": "video",
      "price": { "amount": 0.07, "unit": "second", "currency": "USD" }
    }
  ]
}
```
