Lorem Picsum
Placeholder photos, plus a JSON catalog of them
Best known for serving random placeholder images, Lorem Picsum also exposes a JSON list endpoint describing available photos with author, dimensions, and download URLs. The images themselves come from Unsplash. Great for mocking up galleries without hardcoding assets.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://picsum.photos/v2/list?page=1&limit=2
[
{
"id": "0",
"author": "Alejandro Escamilla",
"width": 5000,
"height": 3333,
"url": "https://unsplash.com/photos/yC-Yzbqy7PY",
"download_url": "https://picsum.photos/id/0/5000/3333"
}
]curl "https://picsum.photos/v2/list?page=1&limit=2"const res = await fetch("https://picsum.photos/v2/list?page=1&limit=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://picsum.photos/v2/list?page=1&limit=2")
print(res.json())/v2/list?page=1&limit=2PROBEDPlaceholder photos, plus a JSON catalog of them
/randomRandom item from the collection.
/v2V2 — documented GET route.
/v2/1V2 details by ID (example: 1).
/v2?limit=10V2 — documented GET route.
/v2/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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Lorem Picsum: common questions
Is Lorem Picsum free to use?
Yes — Lorem Picsum is a free media API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Lorem Picsum need an API key?
No — Lorem Picsum needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Lorem Picsum from the browser?
Yes — Lorem Picsum 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 Lorem Picsum up right now?
Lorem Picsum is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.