Live on Tempo Mainnet

AI Images. Pay per pixel.

Generate images from text prompts. No API keys, no signup. Just pay with pathUSD via MPP.

Schnell
$0.03/img
Fast generation
Dev
$0.05/img
Balanced quality
Pro
$0.10/img
High quality

Try it

Free demo — 3 generations per day. No wallet needed.

How it works

1
POST your prompt
Send a request to /v1/images/generate with your text prompt
2
Receive payment challenge
Server responds 402 with a WWW-Authenticate challenge containing the price
3
Pay with pathUSD
Transfer pathUSD on Tempo blockchain. Gas fees covered by the server.
4
Get your image
Retry with the payment credential. Receive your image + receipt.

Quick start

curl
Node.js
Python
# Step 1: Get payment challenge
curl -X POST https://paid-image-api-production.up.railway.app/v1/images/generate \
  -H "Content-Type: application/json" \
  -d '{"prompt": "a sunset over mountains", "model": "gemini-3-pro-image-preview"}'

# Step 2: Pay via Tempo, then retry with credential
curl -X POST https://paid-image-api-production.up.railway.app/v1/images/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Payment <base64url-credential>" \
  -d '{"prompt": "a sunset over mountains", "model": "gemini-3-pro-image-preview"}'