Skip to main content
GET
/
v1
/
youtube
/
batch
/
{jobId}
Poll batch job status and results
curl --request GET \
  --url https://api.urltodata.ai/v1/youtube/batch/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "queued",
  "total": 123,
  "completed": 123,
  "failed": 123,
  "results": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.urltodata.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your-api-key
required

API key as Bearer token (e.g. Bearer mp_abc123_secret)

Path Parameters

jobId
string
required

Response

200 - application/json

Batch job status

status
enum<string>
Available options:
queued,
active,
completed,
failed
total
integer
completed
integer
failed
integer
results
object[]