/v1/videos/ids
Video IDs
Nur Video-IDs eines Channels.
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/twitch-api/v1/videos/ids" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/twitch-api/v1/videos/ids", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/twitch-api/v1/videos/ids");
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/ids",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 10,
"login": "ninja",
"video_ids": [
"2759025179",
"2743402377",
"2742139515",
"2737976217",
"2737133200",
"2736293554",
"2735691388",
"2735533525",
"2730657194",
"2729715224"
]
},
"meta": {
"timestamp": "2026-05-04T18:46:30.939Z",
"request_id": "53324b2c-aff3-4e2a-8bdf-a9eb52bd67ec"
},
"status": "ok",
"message": "Video IDs retrieved successfully",
"success": true
}