Zum Inhalt springen
GET /v1/videos/thumbnails

Video thumbnails

Thumbnail-URLs aller Videos.

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

Beispiel-Response

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

{
    "data": {
        "count": 10,
        "login": "ninja",
        "thumbnails": [
            {
                "id": "2759025179",
                "title": "New map, new update, :D",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/a73bd777ee1ab91144e3_ninja_319118075099_1777374856//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2743402377",
                "title": "LAST STREAM FOR AWHILE.... | Blev bros sports show, vibing with the bros |",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/e2350127388ec5d6bc0f_ninja_318667539290_1775694299//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2742139515",
                "title": "Completing our expedition today vibes type stuff | Jesus has risen! HAPPY EASTER",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/1e041243d63f4f08fbaa_ninja_318747888987_1775566254//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2737976217",
                "title": "PLAYING EVERY MAP BUT STELLA MONTIS | NERF TRIGGER NADES FOR THE LOVE OF GOD",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/114c0842795ec3ed0566_ninja_318553556954_1775133647//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2737133200",
                "title": "NEW SMG AND SHOTGUN BLUEPRINT OBTAINED | Using them as much as possible",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/84f1518a96d0def22de4_ninja_318474906329_1775044875//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2736293554",
                "title": "HUGE MASSIVE ARC UPDATE | NEW WEAPONS | NEW MODES | NEW EVERYTHING LETS OGGOGOGO",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/0d7836bf98b12e43a16b_ninja_318519231450_1774954717//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2735691388",
                "title": "Update Arc Raiders",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/55f3181fc1707d15a83a_ninja_32787791639_8957788502//thumb/thumb2735691388-320x180.jpg"
            },
            {
                "id": "2735533525",
                "title": "BACK IN THE REDBULL STUDIO STREAM SETUP AT MY OTHER PLACE ARC RAIDERS GAMINGGGG",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/d320384e12f429131b61_ninja_318440282841_1774874797//thumb/thumb0-320x180.jpg"
            },
            {
                "id": "2730657194",
                "title": "Last stream for a week (give or take a couple of days) Got some family stuff to take care of.",
                "thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/d1m7jfoe9zdc1j/3dfdbb39e82d59cb1714_ninja_318501833435_1774371192//thumb/thumb0-320x180.jpg"
    
…