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/models
Base URL https://capi.aiAPI version v1Authentication Bearer YOUR_API_TOKEN

02Parameters

NameTypeDescription
modalitystringFilter by modality, e.g. video.
providerstringFilter 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" }
    }
  ]
}