Zum Inhalt springen
GET /v1/search/thumbnails

Search thumbnails

Thumbnail-URLs aus den Suchergebnissen.

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/youtube-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/youtube-api/v1/search/thumbnails" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/youtube-api/v1/search/thumbnails", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/youtube-api/v1/search/thumbnails");
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/youtube-api/v1/search/thumbnails",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 24,
        "query": "mrbeast",
        "thumbnails": [
            {
                "title": "100 People Simulate Being Stranded In The Wilderness",
                "video_id": "6Zy5VLcEbZc",
                "thumbnail": "https://i.ytimg.com/vi/6Zy5VLcEbZc/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDjXGQvpaoEr8q2zGy3Ulz-w0aV1w"
            },
            {
                "title": "Last To Leave Grocery Store, Wins $250,000",
                "video_id": "zRtGL0-5rg4",
                "thumbnail": "https://i.ytimg.com/vi/zRtGL0-5rg4/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAf-HGlB3_13-Tqb54BYAOiy_3lHg"
            },
            {
                "title": "50 Streamers Fight for $1,000,000",
                "video_id": "DXVHmGoCTco",
                "thumbnail": "https://i.ytimg.com/vi/DXVHmGoCTco/hq720_custom_2.jpg?sqp=CLTK4s8G-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBvytBu0uZHCEXPDJU_DekRFvOY5A"
            },
            {
                "title": "Trapped On An Island Until I Build A Boat",
                "video_id": "JFtlf8RoPZY",
                "thumbnail": "https://i.ytimg.com/vi/JFtlf8RoPZY/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBnd7JzGg0L5d8tE7enchu1cvZxLg"
            },
            {
                "title": "Survive 30 Days Stranded With Your Ex, Win $250,000",
                "video_id": "AoN1K4c7VKE",
                "thumbnail": "https://i.ytimg.com/vi/AoN1K4c7VKE/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBWvhQfFSlknfGj4Fvqhkl7l9JiiA"
            },
            {
                "title": "I Built 10 Schools Around The World",
                "video_id": "5OLs1GWB4OA",
                "thumbnail": "https://i.ytimg.com/vi/5OLs1GWB4OA/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLBld1UW8aZw0506rKHaEeNbTskG1g"
            },
            {
                "title": "Ages 1 - 100 Race For $250,000!",
                "video_id": "9WEQts7b8Pw",
                "thumbnail": "https://i.ytimg.com/vi/9WEQts7b8Pw/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDq1WKuCdmPVOX-C9uDSS3GyaXl4A"
            },
            {
                "title": "$1 vs $1,000,000,000 Futuristic Tech!",
                "video_id": "pAnGwRiQ4-4",
                "thumbnail": "https://i.ytimg.com/vi/pAnGwRiQ4-4/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLCqY0FcyQSu0xg_ZnFoxrrlfNHu_Q"
            },
            {
                "title": "30 Celebrities Fight For $1,000,000!",
                "video_id": "QJI0an6irrA",
                "thumbnail": "https://i.ytimg.com/vi/QJI0an6irrA/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLArfGUvGsJm350qX7fO6g9OGn8S4w"
            },
            {
                "title": "Why MrBeast Is Obsessed With Juan 😳",
                "video_id": "er_tHbh6D-I",
   
…