Video Status
The Status API enables getting the progress and status of the video produced via the API calls.
Get videos
Authorizations
Responses
200
Successful Response
application/json
get
GET /api/v1/videos HTTP/1.1
Host: api.makereals.com
api-key: YOUR_API_KEY
Accept: */*
200
Successful Response
[
{
"id": "text",
"name": "text",
"status": "started",
"progress": 0,
"req_id": "text",
"draft_id": "text",
"source_draft_id": "text",
"recipe_id": "text",
"palette_id": "text",
"character_id": "text",
"voice_id": "text",
"scenes": [
{
"name": "text",
"media": [
"text"
],
"texts": [
"text"
],
"transcript": "text",
"voice_recording_url": "text"
}
],
"video_player_url": "text",
"download_url": "text"
}
]
Get video by id
Authorizations
Path parameters
video_idstringRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
GET /api/v1/videos/{video_id} HTTP/1.1
Host: api.makereals.com
api-key: YOUR_API_KEY
Accept: */*
{
"id": "text",
"name": "text",
"status": "started",
"progress": 0,
"req_id": "text",
"draft_id": "text",
"source_draft_id": "text",
"recipe_id": "text",
"palette_id": "text",
"character_id": "text",
"voice_id": "text",
"scenes": [
{
"name": "text",
"media": [
"text"
],
"texts": [
"text"
],
"transcript": "text",
"voice_recording_url": "text"
}
],
"video_player_url": "text",
"download_url": "text"
}
Last updated