justmeme.wtf
Meme templates: browse, search, trend and randomize
justmeme.wtf offers a keyless JSON API over a large library of meme templates, with endpoints for listing, searching, trending, categories and a random pick. Each template comes back with a name, slug and image URL. CORS is open and no signup is needed.
GET https://justmeme.wtf/api/v1/random
{
"success": true,
"template": {
"name": "i receive you receive",
"slug": "311582564-i-receive-you-receive",
"url": "https://i.imgflip.com/4/55ian8.jpg"
}
}curl "https://justmeme.wtf/api/v1/random"const res = await fetch("https://justmeme.wtf/api/v1/random");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://justmeme.wtf/api/v1/random")
print(res.json())/randomPROBEDMeme templates: browse, search, trend and randomize
/listPaginated list of resources.
/random?limit=5Paginated variant with limit parameter.
/templatesTemplates — documented GET route.
/templates/searchSearch by query parameters.
/templates/Templates — documented GET 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.
justmeme.wtf: common questions
Is justmeme.wtf free to use?
Yes — justmeme.wtf is a free fun API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does justmeme.wtf need an API key?
No — justmeme.wtf needs no API key or signup. You can call it straight away; rate limits still apply (60 requests/minute per IP (per docs)).
Can I call justmeme.wtf from the browser?
Yes — justmeme.wtf 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 justmeme.wtf up right now?
As of our last scheduled check, justmeme.wtf is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.