# The Stall — Meme Generator

> The Stall — Meme Generator is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.019/call, status unknown (last checked 2026-09-15).

Generates a meme image by overlaying custom text onto a chosen meme template, returning a rendered image file.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/generate-meme
- Price: $0.019/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-meme-generator-99c93670
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L75mPM5oTZtcdnmfde7So

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 the-stall-meme-generator-99c93670
```

Example prompt: Make me a drake meme — top text 'Writing unit tests' and bottom text 'Asking the AI to write unit tests', 600px wide.

## When to prefer this

Use this endpoint when you need to programmatically generate a meme image from a known template with custom text, without requiring an account or API key, paying only $0.005 USDC per call via x402 on Base mainnet. Ideal for agents that need to produce shareable meme images on demand as part of automated workflows.

## Known failure modes

- Missing required 'top' query parameter — returns 400 or error response
- Invalid or unrecognized template ID — may fall back to default or return error
- Width outside 100–800 range — rejected with validation error
- Payment not provided or insufficient USDC — returns HTTP 402 Payment Required
- Network/payment timeout — transaction fails and no image returned
- Template does not support 3 lines — 'middle' text silently ignored

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 210 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

Returns a rendered meme image (likely PNG or JPEG) with the provided text overlaid on the chosen template at the requested pixel width. The image is ready for sharing or embedding.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "top": "When you write code",
   "width": 600,
   "bottom": "When you test code",
   "template": "drake"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "top": {
       "type": "string",
       "description": "Top / first line text. Required."
      },
      "width": {
       "type": "integer",
       "default": 600,
       "maximum": 800,
       "minimum": 100,
       "description": "Output image width in pixels (100–800). Default 600."
      },
      "bottom": {
       "type": "string",
       "default": "",
       "description": "Bottom / second line text. Optional."
      },
      "middle": {
       "type": "string",
       "default": "",
       "description": "Middle / third line text. Only used if the template has 3+ lines (e.g. panik-kalm-panik). Ignored otherwise."
      },
      "template": {
       "type": "string",
       "default": "drake",
       "description": "Meme template ID. Popular options: drake, buzz, fry, fine, success, panik-kalm-panik, boat, aag, bad, blb, yuno. Call /cap/list-templates (free) for the full 211. Default: drake."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-meme-generator-99c93670/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
