/v1/meta
Endpoints, orders & source
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/dlive-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dlive-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dlive-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"sample": {
"dlive_followers": 63031
},
"source": "DLive public GraphQL API (graphigo.prd.dlive.tv), keyless",
"service": "dlive-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "A streamer's profile (username or displayname).",
"GET /v1/search": "Search streamers by name (text, limit).",
"GET /v1/category": "One category's detail (id).",
"GET /v1/categories": "The game/category directory (limit).",
"GET /v1/livestreams": "Live streams now (order, limit).",
"GET /v1/recommended": "DLive's front-page recommended channels."
},
"description": "Live data from DLive, the blockchain-based livestreaming platform, with no key: any streamer's public profile (followers, partner status, live status), the recommended channels, the live-stream directory, the game/category directory with live viewer counts, a single category's detail, and a search over streamers. The creator / livestreaming / audience-stats layer for stream dashboards, creator tools and discovery. Distinct from the Kick and other streaming readers. Live, short cache only.",
"upstream_status": "ok",
"livestream_orders": [
"TRENDING",
"NEW",
"MIX"
]
},
"meta": {
"timestamp": "2026-06-15T02:11:21.279Z",
"request_id": "cb2de6ca-f4e1-4c4b-93e9-0e4626d8b982"
},
"status": "ok",
"message": "Meta",
"success": true
}