Ir al contenido
GET /v1/meta

Usage notes

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/urbandict-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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