API · /urbandict-api

Urban Dictionary API

healthy 3,561 Subscribers

Urban Dictionary as an API — the crowd-sourced dictionary of slang, internet terms, memes, abbreviations and pop-culture expressions. Where a formal dictionary stops, Urban Dictionary explains the words people actually use online and in conversation: youth slang, gaming and meme vocabulary, acronyms, regional expressions and the ever-changing language of the internet. This API wraps the official Urban Dictionary service into a clean JSON interface. /v1/define?term=yeet returns the community definitions for a slang term, each with a real usage example, the contributing author, the up- and down-vote counts and a computed net score, sorted best-first so the most upvoted meaning comes first (or pass defid to fetch one specific definition by its id). /v1/random returns a batch of random definitions — perfect for a slang word-of-the-day, discovery features or fun. /v1/autocomplete?term=ye returns term suggestions as the user types, each with a short preview, for building search-as-you-type experiences. Ideal for chat and social apps decoding slang, language-learning and culture tools, moderation context, trivia and entertainment bots, and word-of-the-day widgets. Definitions are user-submitted and, by the nature of the source, may contain strong or NSFW language. Data from Urban Dictionary. For formal definitions, pronunciation and etymology, pair this with a standard dictionary API.

api.oanor.com/urbandict-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/urbandict-api/openapi.json
/api/urbandict-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
341 ms
Server probes · 24h
Subscribers
3,561
active
Total calls
20
last 7 days
status Full status page → · 24 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 2,000 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 2000 calls/month
  • 2 req/sec
  • Define, random & autocomplete
  • No credit card
Sign in to subscribe

Starter

€5.00 /month

  • 45,000 calls / month
  • 5 requests / second
  • Hard cap (429 above quota, no overage)
  • 45k calls/month
  • 5 req/sec
  • Vote-sorted definitions
  • Email support
Sign in to subscribe

Pro

€18.00 /month

  • 200,000 calls / month
  • 12 requests / second
  • Hard cap (429 above quota, no overage)
  • 200k calls/month
  • 12 req/sec
  • Chat & moderation use
  • Priority support
Sign in to subscribe

Mega

€49.00 /month

  • 750,000 calls / month
  • 35 requests / second
  • Hard cap (429 above quota, no overage)
  • 750k calls/month
  • 35 req/sec
  • High-volume apps
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Dictionary API

Look up English word definitions with phonetic transcriptions, pronunciation audio, parts of speech and example sentences, plus synonyms and antonyms. Ideal for writing tools, word games, language learning and education apps. Experimental support for 11 more languages.

api.oanor.com/dictionary-api

Instant Answer API

Get instant knowledge answers — definitions, abstracts, entity facts and related topics — plus search autocomplete suggestions, powered by DuckDuckGo. Ideal for knowledge panels, "did you mean" boxes and query suggestions.

api.oanor.com/answer-api

Kanji API

The Japanese kanji writing system as an API — every Jōyō, Kyōiku and Jinmeiyō kanji with its on/kun readings, English meanings, JLPT level, school grade, stroke count and newspaper frequency. Look up a single kanji (e.g. 字 → grade 1, JLPT 4, readings ジ / あざ, meanings "character, letter"), find every kanji that shares a kana reading (e.g. かじ), list the vocabulary that uses a given kanji, or pull a whole standard set (Jōyō 2,136 · Kyōiku · grade-1…grade-6 · Jinmeiyō) with paging. Backed by the open KANJIDIC2 / JMdict datasets via kanjiapi.dev. Ideal for Japanese-learning and flashcard apps, SRS/Anki-style study tools, furigana and reading aids, language-education platforms and linguistics research.

api.oanor.com/kanji-api

Stopwords API

Stopword lists and removal for 58 languages. Fetch the full stopword list for a language, see all supported languages with their word counts, check whether a single word is a stopword, or strip stopwords out of a block of text to get a clean keyword stream. Built on the open stopwords-iso dataset and served entirely in-memory, so responses are instant and the service is always available. Ideal for search indexing and relevance, NLP preprocessing and text mining, keyword extraction, tag generation and content tooling.

api.oanor.com/stopwords-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Urban Dictionary API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Urban Dictionary API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Urban Dictionary API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Urban Dictionary API cost?
Urban Dictionary API has a free tier with 100 calls / month. Paid plans start at €5.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Urban Dictionary API GDPR-compliant?
All requests to Urban Dictionary API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/urbandict-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/urbandict-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/urbandict-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/urbandict-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.