Skip to main content
GET
https://api.muvi.video
/
v1
/
providers
curl -X GET https://api.muvi.video/v1/providers \
  -H "x-api-key: YOUR_API_KEY"
{
  "providers": [
    {
      "id": "google",
      "name": "Google",
      "description": "Google's AI video and image generation models",
      "logoUrl": "https://cdn.muvi.video/providers/google.png",
      "website": "https://ai.google",
      "color": "#4285F4",
      "categories": ["video", "image"],
      "isActive": true
    },
    {
      "id": "alibaba",
      "name": "Alibaba",
      "description": "Alibaba's Wan series video generation models",
      "logoUrl": "https://cdn.muvi.video/providers/alibaba.png",
      "website": "https://www.alibabacloud.com",
      "color": "#FF6A00",
      "categories": ["video"],
      "isActive": true
    }
  ]
}

Authentication

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

Response

providers
array
List of available providers.
curl -X GET https://api.muvi.video/v1/providers \
  -H "x-api-key: YOUR_API_KEY"
{
  "providers": [
    {
      "id": "google",
      "name": "Google",
      "description": "Google's AI video and image generation models",
      "logoUrl": "https://cdn.muvi.video/providers/google.png",
      "website": "https://ai.google",
      "color": "#4285F4",
      "categories": ["video", "image"],
      "isActive": true
    },
    {
      "id": "alibaba",
      "name": "Alibaba",
      "description": "Alibaba's Wan series video generation models",
      "logoUrl": "https://cdn.muvi.video/providers/alibaba.png",
      "website": "https://www.alibabacloud.com",
      "color": "#FF6A00",
      "categories": ["video"],
      "isActive": true
    }
  ]
}