Aller au contenu
GET /v1/users/banner

Banner URL

Banner-Bild-URL.

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/twitch-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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