payment-ready until 2026-08-20
imported from the x402 Bazaar, not submitted by the operator · own this service? claim it · or ask to be removed
Pay-per-call AI image generation on Base. Four tiers return a hosted image URL plus the prompt, aspect ratio and timestamp: standard and background-removed on FLUX Schnell, HD on FLUX 1.1 Pro with 4x upscale, and Pro on FLUX Kontext Max.
Pay from $0.25 to $0.75 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.
first settlement 2026-05-13 · $31.10 all-time · settled via coinbase
ASSESSMENT
updated 3h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 475ms
- avg response
- 220ms
- total checks
- 2,136
Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.
compliance A (14/14)
14 of 14 x402 conformance checks pass. Full checklist below.
price $0.25 to $0.75 (p79 in AI)
- price (min)
- $0.25
- price (max)
- $0.75
- category percentile (min)
- p79 in AI
- category percentile (max)
- p73 in AI
- endpoints / prices
- 4 / 4
- model
- tiered
- stability
- 0%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
- domain age
- 137d
- registrar
- Porkbun LLC
- hosting
- custom
- domain created
- 2026-03-26
Identity facts, not a risk score.
traction $5.35 30d · 7 buyers
- volume 30d
- $5.35
- buyers 30d
- 7
- settlements 30d
- 18
- first settlement
- 2026-05-13
- last settlement
- 2026-08-12
- top buyer share
- 62% of 30d volume
- trend 7d vs 30d
- 1.60x the 30d daily rate
- networks
- eip155:8453
- volume all-time
- $31.10
- settlements all-time
- 93
- median settlement 30d
- $0.35
- max settlement 30d
- $0.75
- settled via
- coinbase ($5.35, 18 tx)
Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.
Top buyer share is a concentration signal, not part of the ranking score.
CHANGES
1 event, detecting since 2026-07-24Payout, price, and schema changes detected on this service's x402 wire. A payout rotation at an unchanged price shows up here even when nothing else moves. Full feed at /changes.
changes price changed 6d ago (1 since 2026-07-24)
price changed · 6d ago
GET /generate · eip155:8453 · USDC: 50000 → 250000
Amounts are on-wire atomic units in the named asset.
WHAT IT DOES
ai-derivedNo AI synthesis has been produced for this service yet.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET | 402 CHANNEL |
|---|---|---|---|---|---|---|
| GET | /generate | $0.25 | Base | USDC | header | |
| GET | /generate/clean | $0.35 | Base | USDC | header | |
| GET | /generate/hd | $0.50 | Base | USDC | header | |
| GET | /generate/pro | $0.75 | Base | USDC | header |
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /generate returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i 'https://imagegen.coinopai.com/generate'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "500000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://imagegen.coinopai.com/generate/hd",
"mimeType": "application/json",
"description": "Start a high-resolution AI image job from a text prompt, using FLUX 1.1 Pro plus a 4x Real-ESRGAN upscale. The paid response returns HTTP 202 with a job_id and a free status_url to poll until the image succeeds or fails, preventing long generation from being lost to an HTTP proxy timeout."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"aspect": "1:1",
"prompt": "a futuristic city at night, cyberpunk style"
}
},
"output": {
"type": "json",
"example": {
"tier": "hd",
"job_id": "7c43fb4b-08a4-4a0a-ae49-21fe47462c98",
"status": "queued",
"image_url": null,
"status_url": "https://imagegen.coinopai.com/jobs/7c43fb4b-08a4-4a0a-ae49-21fe47462c98"
}
}
},
"schema": {
"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": [
"prompt"
],
"properties": {
"aspect": {
"enum": [
"1:1",
"16:9",
"9:16",
"4:3"
],
"type": "string",
"description": "Aspect ratio (default 1:1)"
},
"prompt": {
"type": "string",
"description": "Text prompt describing the image to generate"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"tier": {
"type": "string"
},
"job_id": {
"type": "string"
},
"status": {
"enum": [
"queued",
"processing",
"succeeded",
"failed"
],
"type": "string"
},
"image_url": {
"type": "string",
"nullable": true
},
"status_url": {
"type": "string"
}
}
}
}
}
}
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "500000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1786128307,
"resourceUrl": "https://imagegen.coinopai.com/generate/hd"
},
"signature": "0x3ff81509fde278dcd3b5c67bdc0aaa7d441c31bc2febbb67f8e5481c1582f25b6a3d2f9ab477a77376292a6b4cd5f40ac3f129f45ec32944fea368c97165892f1b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "750000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://imagegen.coinopai.com/generate/pro",
"mimeType": "application/json",
"description": "Start a premium AI image job using FLUX Kontext Max, background removal, and a 4x upscale. The paid response returns HTTP 202 with a job_id and a free status_url to poll until the transparent high-resolution image succeeds or fails, preventing long generation from being lost to an HTTP proxy timeout."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"aspect": "1:1",
"prompt": "a geometric eagle logo mark"
}
},
"output": {
"type": "json",
"example": {
"tier": "pro",
"job_id": "7c43fb4b-08a4-4a0a-ae49-21fe47462c98",
"status": "queued",
"image_url": null,
"status_url": "https://imagegen.coinopai.com/jobs/7c43fb4b-08a4-4a0a-ae49-21fe47462c98"
}
}
},
"schema": {
"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": [
"prompt"
],
"properties": {
"aspect": {
"enum": [
"1:1",
"16:9",
"9:16",
"4:3"
],
"type": "string",
"description": "Aspect ratio (default 1:1)"
},
"prompt": {
"type": "string",
"description": "Text prompt describing the image to generate"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"tier": {
"type": "string"
},
"job_id": {
"type": "string"
},
"status": {
"enum": [
"queued",
"processing",
"succeeded",
"failed"
],
"type": "string"
},
"image_url": {
"type": "string",
"nullable": true
},
"status_url": {
"type": "string"
}
}
}
}
}
}
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "750000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1786128307,
"resourceUrl": "https://imagegen.coinopai.com/generate/pro"
},
"signature": "0x31878c9bac9b16691b2cdd2b20f1dc05b57fbc439609cf60b6c5519c019948567779bd977180d30c4eca02993c9cf2340eaa80df610c3837d0da6744987b9fbd1c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "250000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://imagegen.coinopai.com/generate",
"mimeType": "application/json",
"description": "Generate an AI image from a text prompt via FLUX Schnell — fast text-to-image for drafts, mockups, concept art, marketing images, and social graphics. Built for agents and automated content pipelines: pass a prompt and aspect ratio (1:1, 16:9, 9:16, 4:3), get back a hosted image URL. Create AI art via API — pay-per-call via x402 USDC on Base, no API key, no signup, no rate-limited free tier."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"aspect": "1:1",
"prompt": "a cat wearing sunglasses on a beach"
}
},
"output": {
"type": "json",
"example": {
"aspect": "1:1",
"prompt": "a cat wearing sunglasses on a beach",
"image_url": "https://cdn.forgemesh.io/images/example.png",
"generated_at": "2026-05-13T14:30:00.000Z"
}
}
},
"schema": {
"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": [
"prompt"
],
"properties": {
"aspect": {
"enum": [
"1:1",
"16:9",
"9:16",
"4:3"
],
"type": "string",
"description": "Aspect ratio (default 1:1)"
},
"prompt": {
"type": "string",
"description": "Text prompt describing the image to generate"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"aspect": {
"type": "string"
},
"prompt": {
"type": "string"
},
"image_url": {
"type": "string"
},
"generated_at": {
"type": "string"
}
}
}
}
}
}
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "250000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1786128307,
"resourceUrl": "https://imagegen.coinopai.com/generate"
},
"signature": "0xf123f8a83a1b6c6eaed3096cb26509172e5376403f000f91d53568bc6278ec8c0ddc1a7762f46ce383e8cd0a110d58b5dcdd9ff4c790c98ed872e33f7778832f1c",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "350000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 1800
}
],
"resource": {
"url": "https://imagegen.coinopai.com/generate/clean",
"mimeType": "application/json",
"description": "Generate an AI image from a text prompt with the background automatically removed into a transparent PNG cutout (FLUX Schnell). Use it to create product photos, sticker designs, logo marks, or transparent assets for e-commerce listings and automated design pipelines — text-to-image plus background removal in one paid API call, no API key or image-editing step required."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"aspect": "1:1",
"prompt": "a product photo of a ceramic mug"
}
},
"output": {
"type": "json",
"example": {
"tier": "clean",
"aspect": "1:1",
"prompt": "a product photo of a ceramic mug",
"image_url": "https://cdn.forgemesh.io/images/example.png",
"generated_at": "2026-05-13T14:30:00.000Z"
}
}
},
"schema": {
"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": [
"prompt"
],
"properties": {
"aspect": {
"enum": [
"1:1",
"16:9",
"9:16",
"4:3"
],
"type": "string",
"description": "Aspect ratio (default 1:1)"
},
"prompt": {
"type": "string",
"description": "Text prompt describing the image to generate"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"tier": {
"type": "string"
},
"aspect": {
"type": "string"
},
"prompt": {
"type": "string"
},
"image_url": {
"type": "string"
},
"generated_at": {
"type": "string"
}
}
}
}
}
}
}
},
"offer-receipt": {
"info": {
"offers": [
{
"format": "eip712",
"payload": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0x4C1a4FcE51Fea51f128a01ccE8BecB106d391155",
"amount": "350000",
"scheme": "exact",
"network": "eip155:8453",
"version": 1,
"validUntil": 1786128307,
"resourceUrl": "https://imagegen.coinopai.com/generate/clean"
},
"signature": "0x8d055239577b372b87b0755570ab5eef5f9a7ad1c014c7e20aabdca35671d85a6670a33f47c4bb5aa8af7d7cc53936169488e53e716390a44720b8f458f8e2c51b",
"acceptIndex": 0
}
]
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"offers"
],
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"required": [
"format",
"signature"
],
"properties": {
"format": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"properties": {
"asset": {
"type": "string"
},
"payTo": {
"type": "string"
},
"amount": {
"type": "string"
},
"scheme": {
"type": "string"
},
"network": {
"type": "string"
},
"version": {
"type": "integer"
},
"validUntil": {
"type": "integer"
},
"resourceUrl": {
"type": "string"
}
}
},
"signature": {
"type": "string"
},
"acceptIndex": {
"type": "integer"
}
}
}
}
}
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"required"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"maxLength": 128,
"minLength": 16
},
"required": {
"type": "boolean"
}
}
}
}
},
"x402Version": 2
}
] OVER TIME
All charts use the 30d selector; each series spans only the dates it has data for. Every series is also served as JSON at /api/v1/services/coinopai-imagegen/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.
Median across 4 endpoints. Use the selector to isolate one.
checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression
Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.
COMPLIANCE
14/14 checks pass · grade Alast 402 captured 2026-08-07 · last up 2026-08-13
- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
- declares the current x402 version (2)
- EIP-712 domain parameters present on every EVM entry
- x402 v2 envelope delivered in the payment-required header
SITE PILLARS
- homepage reachable
- openapi doc
- pricing page
- llms.txt
- robots.txt
- terms page
recent checks (18) live · click to expand
EMBED THIS BADGE
<a href="https://x402-list.com/services/coinopai-imagegen?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/coinopai-imagegen.svg" alt="CoinopAI ImageGen listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/coinopai-imagegen?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/coinopai-imagegen?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/coinopai-imagegen.svg?data=uptime" alt="CoinopAI ImageGen uptime on x402-list" height="28"> </a>