Naar de inhoud
GET /v1/channels/rss-metadata

RSS metadata

Channel-Metadata aus dem RSS-Feed.

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/youtube-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}