/v1/category
A single category's detail
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/dlive-api/v1/category" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dlive-api/v1/category", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dlive-api/v1/category");
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/category",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": 1,
"note": "One DLive category by its id — title, artwork and current live viewer count across all of its streams. Pass id (see /v1/categories).",
"image": "https://images.prd.dlivecdn.com/category/9237e5e9042e56fdec8f8a9876d6ca3a4201a472.jpg",
"title": "Games",
"source": "DLive",
"cover_image": null,
"watching_count": 2
},
"meta": {
"timestamp": "2026-06-15T02:11:21.219Z",
"request_id": "075971f9-6c5a-4bd8-8ce9-160747bebaf4"
},
"status": "ok",
"message": "Category retrieved successfully",
"success": true
}