API · /kanji-api

Kanji API

degraded 4,470 Subscribers

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
Get an API key Try in playground → Contact provider

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

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

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

API health

degraded
Uptime
80.00%
Server probes · 24h
Avg latency
141 ms
Server probes · 24h
Subscribers
4,470
active
Total calls
25
last 7 days
status Full status page → · 25 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 2,800 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 2,800 calls/month
  • 2 req/sec
  • Kanji + reading + words lookup
  • No credit card
Sign in to subscribe

Starter

€4.90 /month

  • 44,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 44k calls/month
  • 8 req/sec
  • Standard sets (Jōyō / grade)
  • Email support
Sign in to subscribe

Pro

€15.90 /month

  • 220,000 calls / month
  • 20 requests / second
  • Hard cap (429 above quota, no overage)
  • 220k calls/month
  • 20 req/sec
  • Flashcard / SRS apps
  • Priority support
Sign in to subscribe

Mega

€39.90 /month

  • 1,100,000 calls / month
  • 50 requests / second
  • Hard cap (429 above quota, no overage)
  • 1.1M calls/month
  • 50 req/sec
  • Education / dictionary platform
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Urban Dictionary API

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

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

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

Classical Music API

The classical-music repertoire as an API — powered by Open Opus, an open catalogue of classical composers and their works. Search composers by name or browse them by musical epoch (Medieval, Renaissance, Baroque, Classical, Romantic and beyond), getting each composer's full name, epoch and birth/death years; then list a composer's works, optionally filtered by genre — orchestral, chamber, keyboard, stage, vocal or opera. From Bach and Mozart to Beethoven's 44 orchestral works, it turns the canon of classical music into a clean search-and-browse API. A classical-music repertoire reference — distinct from commercial music catalogues of tracks, artists and albums. Ideal for classical-music, education, concert-programming, streaming and media applications. Open data from Open Opus (CC-BY-SA / CC0).

api.oanor.com/classical-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Kanji API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Kanji API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Kanji 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 Kanji API cost?
Kanji API has a free tier with 100 calls / month. Paid plans start at €4.90 / 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 Kanji API GDPR-compliant?
All requests to Kanji 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/kanji-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/kanji-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/kanji-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/kanji-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.