Zum Inhalt springen
GET /v1/search/channels

Search channels

Channel-Suche.

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/search/channels" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/youtube-api/v1/search/channels", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/youtube-api/v1/search/channels");
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/search/channels",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "count": 3,
        "query": "mrbeast",
        "channels": [
            {
                "type": "channel",
                "title": "MrBeast",
                "handle": "/@MrBeast",
                "thumbnail": "//yt3.ggpht.com/nxYrc_1_2f77DoBadyxMTmv7ZpRZapHR5jbuYe7PlPd5cIRJxtNNEYyOC0ZsxaDyJJzXrnJiuDE=s176-c-k-c0x00ffffff-no-rj-mo",
                "channel_id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
                "channel_url": "https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA",
                "description": "SUBSCRIBE FOR A COOKIE! New MrBeast or MrBeast Gaming video every single Saturday at noon eastern time!",
                "video_count_text": "481M subscribers",
                "subscriber_count_text": "@MrBeast"
            },
            {
                "type": "channel",
                "title": "MrBeast Gaming",
                "handle": "/@MrBeastGaming",
                "thumbnail": "//yt3.googleusercontent.com/ytc/AIdro_lMiSL6eHqg2dVxvll6mVMeXo1qVak4TZ4_7mEWdobRRCk=s176-c-k-c0x00ffffff-no-rj-mo",
                "channel_id": "UCIPPMRA040LQr5QPyJEbmXA",
                "channel_url": "https://www.youtube.com/channel/UCIPPMRA040LQr5QPyJEbmXA",
                "description": "New MrBeast or MrBeast Gaming video every single Saturday at noon eastern time! MrBeast Gaming - SUBSCRIBE OR ELSE.",
                "video_count_text": "56.1M subscribers",
                "subscriber_count_text": "@MrBeastGaming"
            },
            {
                "type": "channel",
                "title": "MrBeast 2",
                "handle": "/@MrBeast2",
                "thumbnail": "//yt3.ggpht.com/Jd7IA_TOGrW-oXKgX-m5CBJB0tqMemQ-zhZZYmCJxF4w06dcNREG89dHbR_GGLra1TzSJqoKjFM=s176-c-k-c0x00ffffff-no-rj-mo",
                "channel_id": "UC4-79UOlP48-QNGgCko5p2g",
                "channel_url": "https://www.youtube.com/channel/UC4-79UOlP48-QNGgCko5p2g",
                "description": "my second channel for other videos and shorts :) subscribe.",
                "video_count_text": "57.4M subscribers",
                "subscriber_count_text": "@MrBeast2"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:31.554Z",
        "request_id": "7380d5b7-fe18-450f-ac1c-78fea02c06ad"
    },
    "status": "ok",
    "message": "Channel results retrieved successfully",
    "success": true
}