Zum Inhalt springen
GET /v1/videos/list

Video list

Liste der Videos eines Channels.

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 10,
        "login": "ninja",
        "videos": [
            {
                "id": "2759025179",
                "title": "New map, new update, :D",
                "video_url": "https://www.twitch.tv/videos/2759025179",
                "created_at": "2026-04-28T11:14:21Z",
                "view_count": 114915,
                "channel_url": "https://www.twitch.tv/ninja",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/a73bd777ee1ab91144e3_ninja_319118075099_1777374856//thumb/thumb0-320x180.jpg",
                "length_seconds": 11967
            },
            {
                "id": "2743402377",
                "title": "LAST STREAM FOR AWHILE.... | Blev bros sports show, vibing with the bros |",
                "video_url": "https://www.twitch.tv/videos/2743402377",
                "created_at": "2026-04-09T00:25:04Z",
                "view_count": 55443,
                "channel_url": "https://www.twitch.tv/ninja",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/e2350127388ec5d6bc0f_ninja_318667539290_1775694299//thumb/thumb0-320x180.jpg",
                "length_seconds": 3876
            },
            {
                "id": "2742139515",
                "title": "Completing our expedition today vibes type stuff | Jesus has risen! HAPPY EASTER",
                "video_url": "https://www.twitch.tv/videos/2742139515",
                "created_at": "2026-04-07T12:50:59Z",
                "view_count": 47646,
                "channel_url": "https://www.twitch.tv/ninja",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/1e041243d63f4f08fbaa_ninja_318747888987_1775566254//thumb/thumb0-320x180.jpg",
                "length_seconds": 6275
            },
            {
                "id": "2737976217",
                "title": "PLAYING EVERY MAP BUT STELLA MONTIS | NERF TRIGGER NADES FOR THE LOVE OF GOD",
                "video_url": "https://www.twitch.tv/videos/2737976217",
                "created_at": "2026-04-02T12:40:52Z",
                "view_count": 141223,
                "channel_url": "https://www.twitch.tv/ninja",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/114c0842795ec3ed0566_ninja_318553556954_1775133647//thumb/thumb0-320x180.jpg",
                "length_seconds": 23199
            },
            {
                "id": "2737133200",
                "title": "NEW SMG AND SHOTGUN BLUEPRINT OBTAINED | Using them as much as possible",
                "video_url": "https://www.twitch.tv/videos/2737133200",
                "created_at": "2026-04-01T12:01:20Z",
                "view_count": 132377,
                "channel_url": "https://www.twitch.tv/ninja",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/84f1518a96d0def22de4_ninja_318474906329_1775044875//thumb/thumb0-320x180.jpg",
                "length_sec
…