/v1/recommended
Front-page recommended 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/dlive-api/v1/recommended" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dlive-api/v1/recommended", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dlive-api/v1/recommended");
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/recommended",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The channels DLive currently recommends on its front page — each with the streamer's name, partner status, follower count and, if live, the stream title, category and live viewer count. The discovery feed of who DLive is promoting now.",
"count": 4,
"source": "DLive",
"channels": [
{
"avatar": "https://images.prd.dlivecdn.com/avatar/2863ff80-e4a5-11ea-8cd4-c20daac9fa96",
"is_live": false,
"username": "zosodude77",
"followers": 1939,
"livestream": null,
"displayname": "Zosodude77",
"partner_status": "AFFILIATE"
},
{
"avatar": "https://images.prd.dlivecdn.com/avatar/c0bcc3b0-c10a-11ec-bbd3-2a41ddc46296",
"is_live": false,
"username": "dahboo7",
"followers": 31559,
"livestream": null,
"displayname": "Dahboo7",
"partner_status": "GLOBAL_PARTNER"
},
{
"avatar": "https://images.prd.dlivecdn.com/avatar/aba1c3ad-58fa-11f0-9ab8-72fba9d48f24",
"is_live": false,
"username": "daelyplays",
"followers": 20,
"livestream": null,
"displayname": "DaelyPlays",
"partner_status": "NONE"
},
{
"avatar": "https://image.dlivecdn.com/avatar/default21.png",
"is_live": false,
"username": "daddykayk",
"followers": 5,
"livestream": null,
"displayname": "Daddykayk",
"partner_status": "NONE"
}
]
},
"meta": {
"timestamp": "2026-06-15T02:11:20.844Z",
"request_id": "957fbcf2-e91a-40cb-ab60-a7c358936b53"
},
"status": "ok",
"message": "Recommended channels retrieved successfully",
"success": true
}