Stoicism Quote
One Stoic maxim per request from a public Lambda API
Returns a single random Stoic quote with its author, drawn from thinkers like Marcus Aurelius. It is backed by an open-source AWS Lambda project and answers plain GET requests with tidy JSON. Handy for calm-inducing widgets and daily-quote bots.
GET https://stoic-quotes.com/api/quote
{
"text": "Accept the things to which fate binds you, and love the people with whom fate brings you together,but do so with all your heart.",
"author": "Marcus Aurelius"
}curl "https://stoic-quotes.com/api/quote"const res = await fetch("https://stoic-quotes.com/api/quote");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://stoic-quotes.com/api/quote")
print(res.json())/api/quotePROBEDOne Stoic maxim per request from a public Lambda API
/quotes/randomRandom item from the collection.
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
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.
Stoicism Quote: common questions
Is Stoicism Quote free to use?
Yes — Stoicism Quote is a free fun API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Stoicism Quote need an API key?
No — Stoicism Quote needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Stoicism Quote from the browser?
Yes — Stoicism Quote returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Stoicism Quote up right now?
As of our last scheduled check, Stoicism Quote is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.