Drop-in placeholder images for every project. Random, seeded, categorised, or specific - Built with Arkstack.
/800/600/id/10001/400/300.webp/category/nature/600/400/images/avatar?w=200&h=200&filters=greyscaleEvery category maps directly to a URL segment. Use it with either route style.
Two compatible URL styles — Picsum-style path params and Lorem Toneflix-style query params. Mix and match freely.
/images/*?w= and ?h= to set dimensions.?text=true to discover IDs.Inspect the image catalogue programmatically. All routes return JSON and require no authentication.
/api/v1/listReturns a paginated list of every image across all categories.
{
"data": [
{
"id": "60059",
"url": "https://pictwo.toneflix.net/api/v1/id/60059/info",
"width": 800,
"height": 600,
"category": "technology",
"download_url": "https://pictwo.toneflix.net/id/60059/800/600"
}
],
"links": {
"prev": "https://pictwo.toneflix.net/api/v1/list?page=1&limit=30",
"next": "https://pictwo.toneflix.net/api/v1/list?page=3&limit=30"
}
}/api/v1/id/:id/info/api/v1/seed/:seed/infoReturns metadata for a single image by file ID or seed. The seed endpoint resolves which image the seed maps to and returns that image's details — useful for confirming what a seed will produce before embedding it.
{
"id": "60001",
"url": "https://pictwo.toneflix.net/api/v1/id/60001/info",
"width": 800,
"height": 600,
"category": "technology",
"download_url": "https://pictwo.toneflix.net/id/60001/800/600"
}links.prev and links.next are omitted when there is no previous or next page.
Stack filters with commas. Filters that accept a value use the filter:value syntax.
Build a URL and preview the result — no setup needed.