Ir al contenido
GET /v1/channels/rss-metadata

RSS metadata

Channel-Metadata aus dem RSS-Feed.

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/youtube-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}