Aller au contenu
GET /v1/suggestions/all

Suggestions all

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

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

Exemple de réponse

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

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