YouTube Downloader API
GET
/download/{jobId}

Authorization

bearerAuth
AuthorizationBearer <token>

API key issued from the dashboard, sent as Authorization: Bearer YOUR_API_KEY.

In: header

Path Parameters

jobId*string

The jobId returned from POST /download.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://youtube-download-api.org/api/v2/download/string"

{
  "jobId": "69cfc45e8a3b4d2f9c1e0a7b",
  "status": "IN_PROGRESS",
  "title": "Rick Astley - Never Gonna Give You Up",
  "duration": 213,
  "url": "https://youtu.be/dQw4w9WgXcQ",
  "format": "1080"
}

{
  "error": "Missing API key. Provide it as 'Bearer YOUR_API_KEY'"
}

{
  "error": "Download job not found"
}
{
  "error": "Failed to enqueue download job"
}