Download OpenAPI specification:Download
Miraflow provides a suite of APIs for managing your avatars, video and media as well as generating new videos.
These endpoints require authorization. Include your API key in the request by replacing API_KEY:
curl -H "x-api-key: API_KEY" https://miraflow.ai/api/avatars
Lists the available avatars. These include stock avatars as well as avatars created by the account associated with the supplied API key.
{- "avatars": [
- {
- "id": "cm2yaz9j10008l0qg9npyjgs3",
- "name": "Aerin",
- "createdAt": "2024-11-01T05:37:46.194Z"
}
]
}
Lists the available voices. These include stock voices as well as voices created by the account associated with the supplied API key.
{- "avatars": [
- {
- "id": "cm5n372yq0003vow86ukx8zfe",
- "name": "Belinda - Curious and Soft",
- "createdAt": "2025-01-07T23:13:33.103Z"
}
]
}
Lists the videos that have completed generation.
{- "videos": [
- {
- "id": "cm5n3bnpa000avow8t6p5yc4l",
- "name": "Test video",
- "sourceAvatarId": "cm2yaz9j10008l0qg9npyjgs3",
- "createdAt": "2025-01-07T23:17:06.601Z"
}
]
}
Fetches metadata for a single completed video.
id required | string The ID of the desired video |
id | string |
name | string |
sourceAvatarId | string |
createdAt | string <date> |
downloadUrl | string <url> |
{- "id": "cm5n3bnpa000avow8t6p5yc4l",
- "name": "Test video",
- "sourceAvatarId": "cm2yaz9j10008l0qg9npyjgs3",
- "createdAt": "2025-01-07T23:17:06.601Z",
}
Checks the status of a video generation job. The status will be one of:
Note: The ID parameter should be the jobId that was returned from the video creation endpoint.
id required | string The Job ID returned from the video creation endpoint |
result | string Value: "success" |
status | string Enum: "inference_started" "inference_working" "inference_complete" "inference_failed" "inference_error" |
progress | string Progress percentage when status is inference_working |
{- "result": "success",
- "status": "inference_working",
- "progress": "45%"
}
Starts a new video creation job. The specified avatar will be used, and either a speech can be created using a specified voice and script, or an uploaded audio track can be used.
avatarId | string |
name | string |
voiceId | string |
text | string |
result | string Value: "success" |
jobId | string |
{- "avatarId": "cm2yaz9j10008l0qg9npyjgs3",
- "name": "My new video",
- "voiceId": "cm1lgilny0005m2lnvv3vgtgv",
- "text": "This is the text of the script to be generated in the specified voice."
}
{- "result": "success",
- "jobId": "cm42ab3ou0008aggajj0jy5e2"
}