/v1/livestreams
Live streams now
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/dlive-api/v1/livestreams" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dlive-api/v1/livestreams", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dlive-api/v1/livestreams");
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/dlive-api/v1/livestreams",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "The live streams on DLive right now, ordered by TRENDING, NEW or MIX — each with title, live viewer count, lemon reward, language, category and the creator's name, partner status and followers. Pass order and limit (default 15, max 50).",
"count": 0,
"order": "TRENDING",
"source": "DLive",
"livestreams": []
},
"meta": {
"timestamp": "2026-06-15T02:11:20.577Z",
"request_id": "c7006d10-93d6-4c83-a616-140cfa20c4b3"
},
"status": "ok",
"message": "Live streams retrieved successfully",
"success": true
}