/v1/users/detail
User detail
Vollständiges User-Profil per Login.
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/twitch-api/v1/users/detail" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/twitch-api/v1/users/detail", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/twitch-api/v1/users/detail");
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/twitch-api/v1/users/detail",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": "19571641",
"login": "ninja",
"roles": {
"isStaff": null,
"isPartner": true,
"isAffiliate": false
},
"created_at": "2011-01-16T04:31:20.024666Z",
"channel_url": "https://www.twitch.tv/ninja",
"description": "Just want to make people happy. Co-Founder @DrinkNutcase. ",
"display_name": "Ninja",
"followers_count": 19261130,
"banner_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/36b341d1-0ee2-4cb2-ae00-361740b0051d-profile_banner-480.png",
"profile_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/90d40495-f467-4911-9035-72d8d10a49c5-profile_image-300x300.png"
},
"meta": {
"timestamp": "2026-05-04T18:46:18.624Z",
"request_id": "8a878143-f277-45cd-b500-17c2dad81dfb"
},
"status": "ok",
"message": "User detail retrieved successfully",
"success": true
}