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"
}
}
]
}
Models
List Models
Retrieve a list of all available AI models. Results are cached for 5 minutes.
GET
/
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 withlist_models scope.
Your API key with
list_models scope.Response
List of available models.
Show Model Object
Show Model Object
Unique model identifier.
ID of the provider that offers this model.
Display name of the provider.
Display name of the model.
Brief description of what the model does.
Model category (e.g.,
video, image).Currently active version identifier.
Total number of versions available.
Pricing details for the current version.
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"
}
}
]
}
⌘I
