Developer Documentation — API v1

Build with the MemeGen AI API

Integrate AI-powered meme generation into your apps. Access 17+ endpoints for templates, generation, search, and more.

17
API Endpoints
7
Categories
REST
API Type
v1
Version

Quick Start

Get started in seconds with a simple API call.

Generate a meme with AI
// Search for meme templates
const response = await fetch('/api/memes/search?q=surprised+face&limit=5')
const { results } = await response.json()

// Generate meme with AI
const meme = await fetch('/api/meme/generate', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer meme_your_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    idea: 'When the code works on first try',
    style: 'funny'
  })
})

Ready to build?

Dive into the full API reference to see all available endpoints, parameters, and response formats.

View Full API Docs