SampleAPIs
Ready-made mock datasets for prototyping
SampleAPIs serves themed fake datasets — coffee, cocktails, movies, cars, football and more — as static JSON arrays. No key, CORS-open, and perfect for wiring up a frontend before the real backend exists.
GET https://api.sampleapis.com/coffee/hot
[
{
"title": "Latte",
"description": "Som den mest populära kaffedrycken där ute består latte av en skvätt espresso och ångad mjölk med bara en gnutta skum. Den kan beställas utan smak eller med smak av allt från vanilj till pumpa kryddor.",
"ingredients": [
"Espresso",
"Ångad mjölk"
],
"image": "https://images.unsplash.com/photo-1561882468-9110e03e0f78?auto=format&fit=crop&q=60&w=800&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGxhdHRlfGVufDB8fDB8fHww",
"id": 2
},
{
"title": "Caramel Latte",
"description": "Om du gillar latte med en speciell smak kan karamell latte vara det bästa alternativet för att ge dig en upplevelse av den naturliga sötman och krämigheten hos ångad mjölk och karamell.",
"ingredients": [
"Espresso",
"Ångad mjölk"
],
"image": "https://images.unsplash.com/photo-1599398054066-846f28917f38?auto=format&fit=crop&q=80&w=1887&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"id": 3
}
]curl "https://api.sampleapis.com/coffee/hot"const res = await fetch("https://api.sampleapis.com/coffee/hot");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.sampleapis.com/coffee/hot")
print(res.json())/coffee/hotPROBEDReady-made mock datasets for prototyping
/coffeeCoffee — documented GET route.
/coffee/1Coffee details by ID (example: 1).
/coffee?limit=10Coffee — documented GET route.
/coffee/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.
SampleAPIs: common questions
Is SampleAPIs free to use?
Yes — SampleAPIs is a free developer tools API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does SampleAPIs need an API key?
No — SampleAPIs needs no API key or signup. You can call it straight away; rate limits still apply (5000 req/window · 3876 remaining · resets 1783516346).
Can I call SampleAPIs from the browser?
Yes — SampleAPIs 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 SampleAPIs up right now?
As of our last scheduled check, SampleAPIs is healthy with 100% uptime over 90 days and a 471 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.