/v1/streams/preview
Stream preview
Live-Preview-Bild-URL.
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/twitch-api/v1/streams/preview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/twitch-api/v1/streams/preview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/twitch-api/v1/streams/preview");
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/streams/preview",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"login": "gaules",
"preview_image_url": "https://static-cdn.jtvnw.net/previews-ttv/live_user_gaules-640x360.jpg"
},
"meta": {
"timestamp": "2026-05-04T18:46:29.586Z",
"request_id": "127c887b-9da2-45c9-bdf5-22062eaae9e1"
},
"status": "ok",
"message": "Stream preview retrieved successfully",
"success": true
}