Zen Quotes
Inspirational quotes as JSON, including a daily pick
Zen Quotes serves a large collection of inspirational quotes through a simple keyless API. Grab a random quote, the quote of the day, or a batch, each with author and a ready-made HTML blockquote. The free tier is rate-limited and asks for an attribution link when used publicly.
GET https://zenquotes.io/api/today
[
{
"q": "One of the advantages of being disorganized is that one is always having surprising discoveries.",
"a": "A.A. Milne",
"date": "2026-07-05"
}
]curl "https://zenquotes.io/api/today"const res = await fetch("https://zenquotes.io/api/today");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://zenquotes.io/api/today")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/todayPROBEDInspirational quotes as JSON, including a daily pick
/today?limit=5Paginated variant with limit parameter.
/[mode[Mode — documented GET route.
/quotesQuote collection.
/randomRandom item from the collection.
/imageImage — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Zen Quotes: common questions
Is Zen Quotes free to use?
Yes — Zen Quotes is a free fun API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Zen Quotes need an API key?
No — Zen Quotes needs no API key or signup. You can call it straight away; rate limits still apply (Rate-limited on the free tier (see zenquotes.io)).
Can I call Zen Quotes from the browser?
Not directly — Zen Quotes doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Zen Quotes up right now?
As of our last scheduled check, Zen Quotes is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.