Vai al contenuto
GET /v1/videos/ids

Video IDs

Nur Video-IDs eines Channels.

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/twitch-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}