curl https://ytrss.xyz/v1/jobs/batch/<batchId> \
-H "Authorization: Bearer YOUR_API_KEY"
{
"batch": {
"batch_id": "batch_xyz789",
"jobs": [
{
"id": "job_abc123",
"status": "SUCCESS",
"youtube_url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
"download_endpoint": "https://ytrss.xyz/v1/download/job_abc123",
"video_metadata": {
"title": "Never Gonna Give You Up",
"duration": 213,
"video_id": "dQw4w9WgXcQ",
"size": 3456789",
"description": "The official video for Rick Astley's 1987 hit..."
}
},
{
"id": "job_def456",
"status": "STARTED",
"url": "https://youtube.com/watch?v=9bZkp7q19f0"
},
{
"id": "job_ghi789",
"status": "CREATED",
"url": "https://youtube.com/watch?v=kJQP7kiw5Fk"
}
],
"counts": {
"pending": 1,
"processing": 1,
"success": 1,
"error": 0
},
"finished": false
}
}
Get the status and details of a batch of conversion jobs
curl https://ytrss.xyz/v1/jobs/batch/<batchId> \
-H "Authorization: Bearer YOUR_API_KEY"
{
"batch": {
"batch_id": "batch_xyz789",
"jobs": [
{
"id": "job_abc123",
"status": "SUCCESS",
"youtube_url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
"download_endpoint": "https://ytrss.xyz/v1/download/job_abc123",
"video_metadata": {
"title": "Never Gonna Give You Up",
"duration": 213,
"video_id": "dQw4w9WgXcQ",
"size": 3456789",
"description": "The official video for Rick Astley's 1987 hit..."
}
},
{
"id": "job_def456",
"status": "STARTED",
"url": "https://youtube.com/watch?v=9bZkp7q19f0"
},
{
"id": "job_ghi789",
"status": "CREATED",
"url": "https://youtube.com/watch?v=kJQP7kiw5Fk"
}
],
"counts": {
"pending": 1,
"processing": 1,
"success": 1,
"error": 0
},
"finished": false
}
}
Show Job Object
CREATED in the initial responseSUCCESS)curl https://ytrss.xyz/v1/jobs/batch/<batchId> \
-H "Authorization: Bearer YOUR_API_KEY"
{
"batch": {
"batch_id": "batch_xyz789",
"jobs": [
{
"id": "job_abc123",
"status": "SUCCESS",
"youtube_url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
"download_endpoint": "https://ytrss.xyz/v1/download/job_abc123",
"video_metadata": {
"title": "Never Gonna Give You Up",
"duration": 213,
"video_id": "dQw4w9WgXcQ",
"size": 3456789",
"description": "The official video for Rick Astley's 1987 hit..."
}
},
{
"id": "job_def456",
"status": "STARTED",
"url": "https://youtube.com/watch?v=9bZkp7q19f0"
},
{
"id": "job_ghi789",
"status": "CREATED",
"url": "https://youtube.com/watch?v=kJQP7kiw5Fk"
}
],
"counts": {
"pending": 1,
"processing": 1,
"success": 1,
"error": 0
},
"finished": false
}
}