Skip to main content

video.show

get/v1/videos/render/{id}

video.show

Request

Parameters

NameInTypeDescription
id*pathstringNo description

Responses

200No description
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"job_type": {
"type": "string",
"examples": [
"template_render"
]
},
"status": {
"type": "string",
"examples": [
"processing"
]
},
"progress": {
"type": "integer",
"examples": [
75
]
},
"current_step": {
"type": "string"
},
"storage_disk": {
"type": "string"
},
"input_disk": {
"type": "string"
},
"input_path": {
"type": "string"
},
"input_url": {
"type": "string"
},
"input_size": {
"type": "string"
},
"input_format": {
"type": "string"
},
"input_resolution": {
"type": "string"
},
"input_duration": {
"type": "string"
},
"input_fps": {
"type": "string"
},
"output_url": {
"type": "string",
"examples": [
"https://cdn.pixelmover.io/videos/render_abc123.mp4"
]
},
"output_path": {
"type": "string"
},
"download_url": {
"type": "string"
},
"download_url_expires_at": {
"type": "string"
},
"output_format": {
"type": "string"
},
"output_size": {
"type": "string"
},
"duration_seconds": {
"type": "string",
"examples": [
"42"
]
},
"resolution": {
"type": [
"string",
"null"
],
"examples": [
"1920x1080"
]
},
"thumbnails": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
},
"minItems": 0,
"maxItems": 0,
"additionalItems": false
}
]
},
"processing_time_seconds": {
"type": "string"
},
"credits_used": {
"type": "string"
},
"processing_options": {
"type": "string"
},
"created_at": {
"type": [
"string",
"null"
]
},
"started_at": {
"type": [
"string",
"null"
]
},
"completed_at": {
"type": [
"string",
"null"
]
},
"queued_at": {
"type": [
"string",
"null"
]
},
"expiry_at": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"job_type",
"status",
"progress",
"current_step",
"storage_disk",
"input_disk",
"input_path",
"input_url",
"input_size",
"input_format",
"input_resolution",
"input_duration",
"input_fps",
"output_url",
"output_path",
"download_url",
"download_url_expires_at",
"output_format",
"output_size",
"duration_seconds",
"resolution",
"thumbnails",
"processing_time_seconds",
"credits_used",
"processing_options",
"created_at",
"started_at",
"completed_at",
"queued_at",
"expiry_at"
]
}
},
"required": [
"success",
"data"
]
}