curl -X GET https://api.muvi.video/v1/providers/google/models \
-H "x-api-key: YOUR_API_KEY"
{
"provider": {
"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
},
"models": [
{
"id": "model_abc123",
"name": "Veo 3.1 Fast",
"description": "High-speed video generation model",
"category": "video",
"currentVersion": "v1.0",
"versionCount": 2,
"currentVersionPricing": {
"baseCredits": 50,
"unit": "per_generation"
}
}
]
}
Providers
Get Provider Models
Retrieve all models offered by a specific provider.
GET
/
v1
/
providers
/
{providerId}
/
models
curl -X GET https://api.muvi.video/v1/providers/google/models \
-H "x-api-key: YOUR_API_KEY"
{
"provider": {
"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
},
"models": [
{
"id": "model_abc123",
"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 withlist_models scope.
Your API key with
list_models scope.Path Parameters
The unique identifier of the provider (e.g.,
google, alibaba).Response
Provider details.
Show Provider Object
Show Provider Object
Unique provider identifier.
Display name of the provider.
Brief description of the provider.
URL to the provider’s logo image.
Provider’s official website URL.
Brand color hex code.
Model categories offered.
Whether the provider is currently active.
List of models from this provider.
Show Model Object
Show Model Object
curl -X GET https://api.muvi.video/v1/providers/google/models \
-H "x-api-key: YOUR_API_KEY"
{
"provider": {
"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
},
"models": [
{
"id": "model_abc123",
"name": "Veo 3.1 Fast",
"description": "High-speed video generation model",
"category": "video",
"currentVersion": "v1.0",
"versionCount": 2,
"currentVersionPricing": {
"baseCredits": 50,
"unit": "per_generation"
}
}
]
}
⌘I