Zum Inhalt springen
GET /v1/suggestions/all

Suggestions all

YouTube Auto-Complete (Phrasen + Entitäten).

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

Beispiel-Response

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

{
    "data": {
        "count": 14,
        "query": "mrbeast",
        "suggestions": [
            {
                "image": "https://yt3.googleusercontent.com/nxYrc_1_2f77DoBadyxMTmv7ZpRZapHR5jbuYe7PlPd5cIRJxtNNEYyOC0ZsxaDyJJzXrnJiuDE=s88-c-k-c0x00ffffff-no-rj",
                "query": "mrbeast",
                "entity": "@MrBeast",
                "entity_id": "/g/11ffmnm29k"
            },
            {
                "image": null,
                "query": "mrbeast auf deutsch",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast gaming",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast minecraft",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast supermarket",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast give me some money",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast english",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast edeka",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast 2",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast german",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast streamers",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast survival",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast 7 days",
                "entity": null,
                "entity_id": null
            },
            {
                "image": null,
                "query": "mrbeast lamborghini",
                "entity": null,
                "entity_id": null
            }
        ]
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:35.768Z",
        "request_id": "0bd4900e-4c7c-413c-8c18-11d62e358a24"
    },
    "status": "ok",
    "message": "Suggestions retrieved successfully",
    "success": true
}