# Recoupable AI Image Generator

> Recoupable AI Image Generator is a paid API for AI agents from api.recoupable.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates images from text prompts using AI via a pay-per-call API

## Facts

- Endpoint: GET https://api.recoupable.com/api/image/generate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-recoupable-com-1da28612
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XenevXPCNI4Ihr0cEZ2aj

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 api-recoupable-com-1da28612
```

Example prompt: Generate an image of a serene mountain lake at sunset with pine trees reflected in the water and a small wooden dock in the foreground.

## When to prefer this

Use this endpoint when you need to generate images programmatically via a simple pay-per-call API with micropayments in USDC, especially in agentic workflows where per-use billing via x402 protocol is preferred over subscription models.

## Known failure modes

- Invalid or empty prompt returns an error
- Payment failure if x402 USDC funds are insufficient
- Rate limiting if too many requests are made in quick succession
- Model unavailability or timeout for complex prompts
- Prompt policy violation for disallowed content

## How this service works

Generate images using AI

## Output

Returns a generated image (likely as a URL or base64-encoded image data) created by an AI model based on the provided text prompt, billed at $0.01 USDC per call via x402 protocol.

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "location": {
    "type": "string",
    "required": true,
    "description": "City name"
   }
  }
 },
 "output": {
  "type": "object",
  "properties": {
   "weather": {
    "type": "string"
   },
   "temperature": {
    "type": "number"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-recoupable-com-1da28612/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.recoupable.com](https://www.zero.xyz/host/api.recoupable.com/llms.txt)
