Imgflip

The most popular meme templates as JSON.

😄 FunUNMONITOREDchecked 43 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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
      }
    ]
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /get_memes has been probed
GET/get_memesPROBED

The most popular meme templates as JSON.

GET/get_memes?limit=5

Paginated variant with limit parameter.

GET/caption_image

Caption Image — documented GET route.

GET/caption_gif

Caption Gif — documented GET route.

GET/search_memes

Search Memes — documented GET route.

GET/get_meme

Get Meme — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.