Zum Inhalt springen
GET /v1/autocomplete

Term suggestions

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "term": "ye",
        "count": 10,
        "suggestions": [
            {
                "term": "yeet",
                "preview": "1. Yes 2. Can be a wild card for any curse word"
            },
            {
                "term": "yes",
                "preview": "The acceptance of an object or an invitation."
            },
            {
                "term": "yee",
                "preview": "1)adv. okay;fine;yes"
            },
            {
                "term": "Yellow",
                "preview": "A pretty color."
            },
            {
                "term": "yesn't",
                "preview": "Conj. Meaning Maby yes and maby no"
            },
            {
                "term": "ye",
                "preview": "Second person personal pronoun of the subjective form. Middle English for \"you all\""
            },
            {
                "term": "yeah",
                "preview": "An adverb that makes everything sound better. Said with emphasis."
            },
            {
                "term": "yee-yee",
                "preview": "An asian / Oriental girl. So named from the high-pitched sound they make when penetrated by anything"
            },
            {
                "term": "Yesh",
                "preview": "A somewhat drunken way of saying \"Yes\". A pretty useful and pointless internet term."
            },
            {
                "term": "yeti",
                "preview": "Thought to be the missing link, is actually an advanced version of human that tends to shy away from"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:49.517Z",
        "request_id": "3dbb31e4-cfd0-4fcf-8ff0-f6ad4b6337e2"
    },
    "status": "ok",
    "message": "Suggestions retrieved",
    "success": true
}