Skip to main content
The YouTubeRSS API provides programmatic access to convert YouTube videos into audio. Our API enables you to integrate YouTube to audio conversion into your applications.

Base URL

All API requests should be made to:
https://ytrss.xyz/api/v1

Authentication

The YouTube RSS API uses API key authentication. Include your API key in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://ytrss.xyz/api/v1/poll/job/1234

Get Your API Key

Learn how to obtain and use your API key

Quick Start

1. Convert a YouTube Video

curl -X POST https://ytrss.xyz/v1/convert \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "urls": ["https://youtube.com/watch?v=VIDEO_ID"],
  }'

2. Check Job Status

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://ytrss.xyz/v1/poll/job/{jobId}

3. Download Audio

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://ytrss.xyz/v1/download/{jobId}