Skip to main content
GET
https://api.muvi.video
/
v1
/
models
curl -X GET https://api.muvi.video/v1/models \
  -H "x-api-key: YOUR_API_KEY"
{
  "models": [
    {
      "id": "model_abc123",
      "providerId": "google",
      "providerName": "Google",
      "name": "Veo 3.1 Fast",
      "description": "High-speed video generation model",
      "category": "video",
      "currentVersion": "v1.0",
      "versionCount": 2,
      "currentVersionPricing": {
        "baseCredits": 50,
        "unit": "per_generation"
      }
    }
  ]
}

Authentication

Requires an API key with list_models scope.
x-api-key
string
required
Your API key with list_models scope.

Response

models
array
List of available models.
curl -X GET https://api.muvi.video/v1/models \
  -H "x-api-key: YOUR_API_KEY"
{
  "models": [
    {
      "id": "model_abc123",
      "providerId": "google",
      "providerName": "Google",
      "name": "Veo 3.1 Fast",
      "description": "High-speed video generation model",
      "category": "video",
      "currentVersion": "v1.0",
      "versionCount": 2,
      "currentVersionPricing": {
        "baseCredits": 50,
        "unit": "per_generation"
      }
    }
  ]
}