Readability scores for text
API · /readability-api
Readability API
Score how easy a piece of text is to read using the standard, peer-reviewed readability formulas — Flesch Reading Ease, Flesch-Kincaid Grade, Gunning Fog, SMOG, Coleman-Liau and the Automated Readability Index. Pass text and get all six scores back together with the underlying counts (words, sentences, syllables, complex and polysyllabic words, letters and characters), an averaged grade level, an estimated reading time and a plain-English interpretation of the reading ease. A second endpoint counts syllables for a word or for every word in a phrase. Supply text inline via ?text=, as a query parameter or in a request body; everything is computed locally with no network calls, so it is fast and deterministic. Built for content and copywriting tools, SEO and editorial workflows, education and accessibility (plain-language) checks, and UX-writing review. A readability scorer — distinct from sentiment/NLP analysis (nlp), spelling and grammar checking (grammar), the case and text utilities (text) and string similarity (similarity). No upstream key, no cache.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 93 ms
- Server probes · 24h
- Subscribers
- 3,085
- active
- Total calls
- 0
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,340 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 2,340 calls/month
- 2 req/sec
- 6 formulas + counts
- No credit card
Starter
€6.80 /month
- 46,500 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 46.5k calls/month
- 8 req/sec
- Reading time + syllables
- Email support
Pro
€21.50 /month
- 238,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 238k calls/month
- 20 req/sec
- Editorial & SEO pipelines
- Priority support
Mega
€56.80 /month
- 875,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 875k calls/month
- 50 req/sec
- Content-platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Full-Text RSS API
Turn any web page into clean, readable article text and turn any RSS or Atom feed into a structured, full-text feed. Extract the main article from a URL (title, author, published date, source, lead image, reading time, word count, plain text and cleaned HTML) using readability extraction, parse a feed into its entries, and — the signature feature — produce a full-text feed where every entry carries the complete extracted article instead of just the summary. Only public http/https URLs are accepted and private or internal hosts are blocked. Every endpoint accepts input via the query string or the request body and returns lean JSON. Ideal for read-it-later apps and newsreaders, newsletters and digests, summarisers and RAG pipelines, content monitoring and archiving.
api.oanor.com/fulltextrss-api
Sentiment & NLP API
Analyse text in real time: sentiment scoring (positive / negative / neutral with the matched words), automatic language detection across 180+ languages, and a combined analysis endpoint with text statistics. No setup, no model hosting.
api.oanor.com/nlp-api
DEV (dev.to) API
The DEV Community (dev.to) as an API, powered by the official open-source Forem platform API. DEV is one of the largest communities of software developers writing and sharing articles, tutorials and discussions. This API gives clean, read-only access to that content. /v1/articles browses and filters published articles — by tag (tag=javascript), by author (username=ben), by most-reacted over a period (top=7 for the best of the last week), or by feed state (fresh, rising) — with pagination; each result carries the title, description, canonical URL, tag list, positive-reaction and comment counts, estimated reading time, cover image and author summary. /v1/article?id=5 returns a single article with its complete Markdown body, canonical URL and author social links — everything needed to render or syndicate the full post. /v1/user?username=ben returns a member's public profile: display name, bio/summary, location, join date, linked Twitter/GitHub/website and avatar. /v1/tags lists the platform's popular tags for discovery. Article ids are numeric and stable, so links don't rot. Ideal for developer-content aggregators and newsletters, reading-list and bookmarking apps, community dashboards, "trending in tech" widgets and Discord/Slack bots. Data from the public DEV Forem API, free to use. Content is authored by the DEV community.
api.oanor.com/devto-api
Sitemap API
Fetch and parse an XML sitemap (the sitemaps.org protocol). Pass a sitemap URL and the parse endpoint fetches it — following redirects and transparently gunzipping .gz sitemaps — and returns its type: a urlset with every URL and its lastmod, changefreq and priority, or a sitemapindex listing the child sitemaps, with offset/limit paging for large files. The urls endpoint goes further: when the sitemap is an index it fetches the child sitemaps too and flattens every page URL into a single list, with a configurable cap on URLs and child sitemaps and a truncated flag so you stay in control. The request is made server-side and private or internal targets are refused (SSRF-guarded). Built for SEO audits, building crawl queues and content inventories, change monitoring and migration checks. A sitemap fetcher and parser — distinct from generic XML-to-JSON conversion (xml), the robots.txt evaluator (robots) and the on-page SEO audit (seo). No upstream key, no cache.
api.oanor.com/sitemap-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Readability API?
What's the rate limit for Readability API?
How much does Readability API cost?
Can I cancel my subscription anytime?
Is Readability API GDPR-compliant?
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/readability-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/readability-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/readability-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/readability-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 inNew thread
·
-
Provider answer
🔒 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 inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.