Imgflip
The most popular meme templates as JSON.
The get_memes endpoint returns Imgflip's current top ~100 meme templates with names, image URLs, dimensions and caption counts. It's fully keyless and CORS-open; actually rendering a captioned meme requires a free Imgflip account. Useful for meme pickers and template galleries.
GET https://api.imgflip.com/get_memes
{
"success": true,
"data": {
"memes": [
{
"id": "181913649",
"name": "Drake Hotline Bling",
"url": "https://i.imgflip.com/30b1gx.jpg",
"width": 1200,
"height": 1200,
"box_count": 2
}
]
}
}curl "https://api.imgflip.com/get_memes"const res = await fetch("https://api.imgflip.com/get_memes");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.imgflip.com/get_memes")
print(res.json())/get_memesPROBEDThe most popular meme templates as JSON.
/get_memes?limit=5Paginated variant with limit parameter.
/caption_imageCaption Image — documented GET route.
/caption_gifCaption Gif — documented GET route.
/search_memesSearch Memes — documented GET route.
/get_memeGet Meme — 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.
Imgflip: common questions
Is Imgflip free to use?
Yes — Imgflip is a free fun API. Free tier: Free (get_memes is public; captioning needs a free account). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Imgflip need an API key?
No — Imgflip needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Imgflip from the browser?
Yes — Imgflip 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 Imgflip up right now?
As of our last scheduled check, Imgflip is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.