# MemeGeneratorX402

> MemeGeneratorX402 is a paid API for AI agents from memegeneratorx402.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Generate a captioned meme image on demand, paying per request in USDC on Base mainnet via x402 protocol.

## Facts

- Endpoint: GET https://memegeneratorx402.vercel.app/api/generate-meme
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/memegeneratorx402-4dcf2ecd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8XtPoPxQQyx4veskza_9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability memegeneratorx402-4dcf2ecd
```

Example prompt: Make me a Distracted Boyfriend meme where the guy is labeled 'developers', the girlfriend is 'documentation', and the other woman is 'Stack Overflow' — pay the $0.001 USDC fee automatically.

## When to prefer this

Use this endpoint when you need to programmatically generate a captioned meme image and are comfortable with x402 micropayment protocol on Base mainnet. Ideal for agents automating social media content, humor generation pipelines, or any workflow requiring on-demand meme creation with per-request billing in USDC rather than a subscription.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Invalid query parameters or missing required fields — returns 400 Bad Request
- Meme template not found or unsupported — returns 404 or generation error
- Service unavailable on Vercel deployment — returns 503
- Base mainnet payment processing failure — request cannot proceed

## How this service works

Generate a captioned meme image. Pay per request in USDC on Base mainnet.

## Output

A generated meme image with the requested caption applied, returned as an image file or URL. The response is produced after the x402 micropayment of $0.001 USDC on Base mainnet is processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/memegeneratorx402-4dcf2ecd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from memegeneratorx402.vercel.app](https://www.zero.xyz/host/memegeneratorx402.vercel.app/llms.txt)
