Get results for an extract job by job ID.
Extract job result.
Response for extract job status/results
Current status of the job
queued, active, completed, failed "completed"
Error information if the job failed
Extracted data from the video, structured according to the schema
{
"topics": [
"AI basics",
"Machine learning",
"Neural networks"
],
"summary": "An introduction to artificial intelligence concepts"
}JSON Schema generated by AI. Only present when no schema was provided in the request.
{
"type": "object",
"properties": {
"topics": {
"type": "array",
"items": { "type": "string" }
},
"summary": { "type": "string" }
},
"required": ["topics", "summary"]
}