Test the Meme API in real-time and see instant results
⏳ Loading...
GET /api?action=random
GET /api?action=random&no_repeat=true
GET /api?action=list&limit=10
Click "Send Request" to see the API response...
// Success Response (Random Meme)
{
"success": true,
"meme": {
"filename": "funny-cat.jpg",
"size": 245678,
"type": "image",
"extension": "jpg",
"url": "api?action=get&file=funny-cat.jpg"
}
}
// Success Response (List)
{
"success": true,
"total": 1250,
"page": 1,
"limit": 10,
"pages": 125,
"memes": [...]
}
// Error Response
{
"error": "Invalid API key"
}