/v1/autocomplete
Term suggestions
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}