Get Visual Status
Last updated
{
"item": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "done",
"createdAt": "2025-03-10T15:30:00Z",
"mediaUrl": "https://database.blotato.io/user_1/media/video.mp4",
"imageUrls": ["https://database.blotato.io/user_1/media/slide1.jpg", "https://database.blotato.io/user_1/media/slide2.jpg"]
}
}{
"item": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "generating-media",
"createdAt": "2025-03-10T15:30:00Z",
"mediaUrl": null,
"imageUrls": null
}
}{
"item": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "creation-from-template-failed",
"createdAt": "2025-03-10T15:30:00Z",
"mediaUrl": null,
"imageUrls": null
}
}1. Create visual: POST /videos/from-templates -> get item.id
2. Poll: GET /videos/creations/{id}
3. If status is NOT "done" and NOT "creation-from-template-failed": wait 5 seconds, go to step 2
4. If status = "done": use mediaUrl or imageUrls
5. If status = "creation-from-template-failed": stop, creation failedGET https://backend.blotato.com/v2/videos/creations/a1b2c3d4-e5f6-7890-abcd-ef1234567890 HTTP/1.1
blotato-api-key: YOUR_API_KEY{
"statusCode": 404,
"message": "Not found"
}