Get extract job status
Universal Endpoints
Extract Result
Get results for an extract job by job ID.
GET
Get extract job status
Documentation Index
Fetch the complete documentation index at: https://docs.supadata.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
Response
Extract job result.
Response for extract job status/results
Current status of the job
Available options:
queued, active, completed, failed Example:
"completed"
Error information if the job failed
Extracted data from the video, structured according to the schema
Example:
{
"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.
Example:
{
"type": "object",
"properties": {
"topics": {
"type": "array",
"items": { "type": "string" }
},
"summary": { "type": "string" }
},
"required": ["topics", "summary"]
}