Vai al contenuto
GET /v1/meta

Endpoints, orders & source

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dlive-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}