Zum Inhalt springen
GET /v1/suggestions/entities

Suggestions entities

Auto-Complete-Entitäten (Personen, Channels, Themen).

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

Beispiel-Response

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

{
    "data": {
        "count": 1,
        "query": "mrbeast",
        "entities": [
            {
                "image": "https://yt3.googleusercontent.com/nxYrc_1_2f77DoBadyxMTmv7ZpRZapHR5jbuYe7PlPd5cIRJxtNNEYyOC0ZsxaDyJJzXrnJiuDE=s88-c-k-c0x00ffffff-no-rj",
                "query": "mrbeast",
                "entity": "@MrBeast",
                "entity_id": "/g/11ffmnm29k"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:35.989Z",
        "request_id": "b6b5d2d3-609e-4676-9627-335d83e6f883"
    },
    "status": "ok",
    "message": "Suggestion entities retrieved successfully",
    "success": true
}