Zum Inhalt springen
GET /v1/channels/rss-metadata

RSS metadata

Channel-Metadata aus dem RSS-Feed.

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/youtube-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/youtube-api/v1/channels/rss-metadata" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/youtube-api/v1/channels/rss-metadata", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/youtube-api/v1/channels/rss-metadata");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/youtube-api/v1/channels/rss-metadata",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 15,
        "title": "MrBeast",
        "feed_url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCX6OQ3DkcsbYNE6H8uQQuVA",
        "channel_id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
        "author_name": "MrBeast"
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:37.256Z",
        "request_id": "2c9559b6-bc20-48c2-b50c-a894aa1969b0"
    },
    "status": "ok",
    "message": "RSS metadata retrieved successfully",
    "success": true
}