Zum Inhalt springen
GET /v1/meta

Endpoints, orders & source

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/dlive-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}