Naar de inhoud
GET /v1/user

A streamer's public profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/dlive-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

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