GET
/
extract
/
{job_id}
curl --request GET \
  --url https://api.cloudglue.dev/v1/extract/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "status": "pending",
  "data": {
    "url": "<string>",
    "entities": {},
    "segment_entities": [
      {
        "segment_id": "<string>",
        "start_time": 123,
        "end_time": 123,
        "entities": {}
      }
    ]
  },
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

The unique identifier of the extraction job

Response

200
application/json
Successful response with job details
job_id
string
required
status
enum<string>
required
Available options:
pending,
processing,
ready,
completed,
failed,
not_applicable
data
object

The structured data extracted from the video based on prompt or schema

error
string

Error message if status is 'failed'