/v1/meta
Usage notes
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/urbandict-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/urbandict-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Urban Dictionary is the crowd-sourced dictionary of slang, internet terms, memes and pop-culture expressions — the informal counterpart to a formal dictionary, for decoding youth/internet vocabulary. /v1/define?term=yeet = the community definitions for a slang term, each with a usage example, the author, the up/down vote counts and a computed score, sorted best-first (or pass defid=… to fetch one specific definition by its id); /v1/random = a batch of random definitions, good for word-of-the-day style features; /v1/autocomplete?term=ye = term suggestions as you type, each with a short preview. Definitions are user-submitted and may contain strong or NSFW language by nature of the source. Data from Urban Dictionary. For formal word definitions, pronunciation and etymology, use a standard dictionary API instead.",
"source": "Urban Dictionary API (api.urbandictionary.com)",
"endpoints": [
"/v1/define",
"/v1/random",
"/v1/autocomplete",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T16:23:50.075Z",
"request_id": "0cad91ae-386f-4274-a8c9-80706b9d9f2c"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}