MeowFacts
Random cat facts as JSON, one or many at a time
MeowFacts dishes out random feline trivia, returning a JSON object with a data array of fact strings. A count query parameter controls how many facts you get back. No key required and CORS is open.
GET https://meowfacts.herokuapp.com/?count=1
{
"data": [
"Jaguars are the only big cats that don't roar."
]
}curl "https://meowfacts.herokuapp.com/?count=1"const res = await fetch("https://meowfacts.herokuapp.com/?count=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://meowfacts.herokuapp.com/?count=1")
print(res.json())/?count=1PROBEDRandom cat facts as JSON, one or many at a time
/?limit=5MeowFacts root or index route.
/?page=1MeowFacts root or index 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.
MeowFacts: common questions
Is MeowFacts free to use?
Yes — MeowFacts is a free animals API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does MeowFacts need an API key?
No — MeowFacts needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call MeowFacts from the browser?
Yes — MeowFacts 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 MeowFacts up right now?
As of our last scheduled check, MeowFacts is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.