List Models
List every model available to the key.
01Overview
Returns the catalogue visible to the calling key, including per-model pricing metadata used by the dashboard.
GET
/api/v1/modelsBase URL https://capi.aiAPI version v1Authentication Bearer YOUR_API_TOKEN
02Parameters
| Name | Type | Description |
|---|---|---|
| modality | string | Filter by modality, e.g. video. |
| provider | string | Filter by provider name. |
Example
List Models
cURL
curl https://capi.ai/api/v1/models?modality=video \
-H "Authorization: Bearer YOUR_API_TOKEN"HTTP 200· OK
{
"object": "list",
"data": [
{
"id": "kling-v3-turbo-text-to-video",
"provider": "Kling",
"modality": "video",
"price": { "amount": 0.07, "unit": "second", "currency": "USD" }
}
]
}