Find Video /v2/videos/creations/:id
Get a single video
Endpoint
Base URL: https://backend.blotato.com/v2
URL: /videos/creations/:id
Method: GET
Description
Retrieve the video status. Useful for polling after creating a video programmatically.
Request
Request Params
The request path parameters must contain the following fields:
Field
Type
Required
Description
id
string
โ
Video ID
Responses
Success Response
Status Code: 200 OK
Response Body:
{
"item": {
"id": "VIDEO ID",
"status": "Queued",
"createdAt": "TIME CREATED",
"mediaUrl": "URL OF THE DONE MEDIA OR NULL IF IT IS NOT READY YET",
"imageUrls": "URLS OF THE DONE IMAGES (FOR SLIDESHOW) OR NULL IF IT IS NOT READY YET"
},
}
Error Responses
Status Code: 400 Not Found
{
"statusCode": 400,
"message": "Not found"
}
Last updated
Was this helpful?