/v1/users/banner
Banner URL
Banner-Bild-URL.
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/banner" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/twitch-api/v1/users/banner", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/twitch-api/v1/users/banner");
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/banner",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"login": "ninja",
"banner_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/36b341d1-0ee2-4cb2-ae00-361740b0051d-profile_banner-480.png"
},
"meta": {
"timestamp": "2026-05-04T18:46:27.518Z",
"request_id": "1b7bb869-cf8e-41eb-878d-b58f1235d4e9"
},
"status": "ok",
"message": "Banner retrieved successfully",
"success": true
}