Ir al contenido
GET /v1/user

A streamer's public profile

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/dlive-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/dlive-api/v1/user" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dlive-api/v1/user", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dlive-api/v1/user");
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/user",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "A DLive streamer's public profile by display name — followers, following, partner status, whether they are live and what they are streaming. Pass displayname (e.g. DLive), or use username instead.",
        "user": {
            "about": "Multistreaming with https://restream.io/\n\nJoin DLive Minecraft Charity Event this Sunday 10am PDT with Pewdiepie and Jack Black to support Mental Health Awareness.\nHappy on the outside doesn’t always translate to happy on the inside. Overwork, burnout, and stress of content creating is real. \n\n#NotAlone #dlivefam\n\nDuring the past few years, we have seen and known that celebrities, YouTubers, streamers, and influencers, in general, face tremendous pressure that leads to a toll being taken on their mental health. Because their lives are so public facing, they are among the most vulnerable groups facing the escalated challenges to mental health that social media has created for many. Our mission of creating a live streaming platform that empowers both creators and viewers through a revolutionary rewards system shows that we care about streamers and viewers. It is time for us to continue bringing awareness to this issue and show our support initiatives that fight for mental health awareness and treatment globally.\n\nWatch Pewdiepie stream - https://dlive.tv/pewdiepie\nWatch Jack Black stream - https://www.youtube.com/watch?v=h9zHxkWriV0\nMake your donations here - https://go.dlive.tv/gofundme\n\nBackground music credit: Grandayy\nhttps://www.youtube.com/watch?v=wIlfHmQnvmE\nhttps://www.youtube.com/watch?v=hd7-WcE4AFA",
            "avatar": "https://images.prd.dlivecdn.com/avatar/1a1d8149-f59f-11e8-ab61-96b7bc5c96d7",
            "is_live": false,
            "location": null,
            "username": "dlive",
            "verified": true,
            "followers": 63031,
            "following": 17,
            "created_at": "1511848520000",
            "livestream": null,
            "displayname": "DLive",
            "partner_status": "GLOBAL_PARTNER",
            "last_streamed_at": "1600776010000"
        },
        "source": "DLive"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:20.374Z",
        "request_id": "587caff2-e01d-473d-87ff-3754678e58ab"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}