x402 List

x402 Protocol Service Directory

CoinopAI ImageGen

AI PAYMENT-READY imported

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

BASE URL https://imagegen.coinopai.com ENDPOINTS 4 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-20 MONITORED SINCE 2026-07-20

ASSESSMENT

updated 3h ago

Evidence-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.

jump to compliance checklist

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-24

Payout, 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: 50000250000

Amounts are on-wire atomic units in the named asset.

see all changes for this service

WHAT IT DOES

ai-derived

No AI synthesis has been produced for this service yet.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
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
4 endpoints

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.

// request
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 90d 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.

UPTIME
07-20 · uptime 100.0% · 117ms avg07-21 · uptime 100.0% · 151ms avg07-22 · uptime 100.0% · 173ms avg07-23 · uptime 100.0% · 111ms avg07-24 · uptime 100.0% · 147ms avg07-25 · uptime 100.0% · 211ms avg07-26 · uptime 100.0% · 184ms avg07-27 · uptime 100.0% · 183ms avg07-28 · uptime 100.0% · 201ms avg07-29 · uptime 100.0% · 266ms avg07-30 · uptime 100.0% · 215ms avg07-31 · uptime 100.0% · 199ms avg08-01 · uptime 100.0% · 193ms avg08-02 · uptime 100.0% · 223ms avg08-03 · uptime 100.0% · 235ms avg08-04 · uptime 100.0% · 275ms avg08-05 · uptime 100.0% · 339ms avg08-06 · uptime 100.0% · 275ms avg08-07 · uptime 100.0% · 222ms avg08-08 · uptime 100.0% · 261ms avg08-09 · uptime 100.0% · 283ms avg08-10 · uptime 100.0% · 254ms avg08-11 · uptime 100.0% · 243ms avg08-12 · uptime 100.0% · 227ms avg08-13 · uptime 100.0% · 229ms avg07-2008-13
90d UPTIME 100%
RESPONSE TIME
07-20 · 117ms avg07-20 · 117ms avg07-21 · 151ms avg07-21 · 151ms avg07-22 · 173ms avg07-22 · 173ms avg07-23 · 111ms avg07-23 · 111ms avg07-24 · 147ms avg07-24 · 147ms avg07-25 · 211ms avg07-25 · 211ms avg07-26 · 184ms avg07-26 · 184ms avg07-27 · 183ms avg07-27 · 183ms avg07-28 · 201ms avg07-28 · 201ms avg07-29 · 266ms avg07-29 · 266ms avg07-30 · 215ms avg07-30 · 215ms avg07-31 · 199ms avg07-31 · 199ms avg08-01 · 193ms avg08-01 · 193ms avg08-02 · 223ms avg08-02 · 223ms avg08-03 · 235ms avg08-03 · 235ms avg08-04 · 275ms avg08-04 · 275ms avg08-05 · 339ms avg08-05 · 339ms avg08-06 · 275ms avg08-06 · 275ms avg08-07 · 222ms avg08-07 · 222ms avg08-08 · 261ms avg08-08 · 261ms avg08-09 · 283ms avg08-09 · 283ms avg08-10 · 254ms avg08-10 · 254ms avg08-11 · 243ms avg08-11 · 243ms avg08-12 · 227ms avg08-12 · 227ms avg08-13 · 229ms avg08-13 · 229ms avg07-2008-13
AVG RESP 220ms
PRICE (captured 402, USD)
07-20 · $0.42508-07 · $0.42508-13 · $0.425$0.42507-2008-13

Median across 4 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
07-20 compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checks07-22 uptime: 100.0% compliance: 100% checks07-23 uptime: 100.0% compliance: 100% checks07-24 uptime: 100.0% compliance: 100% checks07-25 uptime: 100.0% compliance: 100% checks07-26 uptime: 100.0% compliance: 100% checks07-27 uptime: 100.0% compliance: 100% checks07-28 uptime: 100.0% compliance: 100% checks07-29 uptime: 100.0% compliance: 100% checks07-30 uptime: 100.0% compliance: 100% checks07-31 uptime: 100.0% compliance: 100% checks08-01 uptime: 100.0% compliance: 100% checks08-02 uptime: 100.0% compliance: 100% checks08-03 uptime: 100.0% compliance: 100% checks08-04 uptime: 100.0% compliance: 100% checks08-05 uptime: 100.0% compliance: 100% checks08-06 uptime: 100.0% compliance: 100% checks08-07 uptime: 100.0% compliance: 100% checks08-08 uptime: 100.0% compliance: 100% checks08-09 uptime: 100.0% compliance: 100% checks08-10 uptime: 100.0% compliance: 100% checks08-11 uptime: 100.0% compliance: 100% checks08-12 uptime: 100.0% compliance: 100% checks08-13 uptime: 100.0% compliance: 100% checksuptimecompliance07-2008-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

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.

VOLUME (on-chain settlement, USD)
05-18 · $0.2005-19 · $0.1005-21 · $0.1005-24 · $0.2006-03 · $0.7506-05 · $0.7506-11 · $0.3006-12 · $0.1506-19 · $0.2506-20 · $106-22 · $306-23 · $0.7506-24 · $0.2506-26 · $0.5006-27 · $0.7506-29 · $106-30 · $107-01 · $207-02 · $107-04 · $207-05 · $107-06 · $207-07 · $107-09 · $0.2507-11 · $207-12 · $107-13 · $107-14 · $0.3507-17 · $0.0507-21 · $207-24 · $0.0507-31 · $108-04 · $0.1508-05 · $0.4008-07 · $108-10 · $0.2508-12 · $0.50peak $305-1808-12
DISTINCT BUYERS
05-18 · 1 buyer05-19 · 1 buyer05-21 · 1 buyer05-24 · 1 buyer06-03 · 1 buyer06-05 · 1 buyer06-11 · 1 buyer06-12 · 1 buyer06-19 · 1 buyer06-20 · 1 buyer06-22 · 3 buyers06-23 · 1 buyer06-24 · 1 buyer06-26 · 2 buyers06-27 · 1 buyer06-29 · 3 buyers06-30 · 2 buyers07-01 · 1 buyer07-02 · 2 buyers07-04 · 2 buyers07-05 · 2 buyers07-06 · 1 buyer07-07 · 3 buyers07-09 · 1 buyer07-11 · 4 buyers07-12 · 2 buyers07-13 · 1 buyer07-14 · 1 buyer07-17 · 1 buyer07-21 · 1 buyer07-24 · 1 buyer07-31 · 1 buyer08-04 · 1 buyer08-05 · 1 buyer08-07 · 1 buyer08-10 · 1 buyer08-12 · 1 buyerpeak 4 buyers05-1808-12

COMPLIANCE

14/14 checks pass · grade A

last 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
TIME STATUS RESP CAUSE
● OK 116ms
● OK 157ms
● OK 113ms
● OK 208ms
● OK 143ms
● OK 220ms
● OK 182ms
● OK 143ms
● OK 121ms
● OK 116ms
● OK 260ms
● OK 308ms
● OK 294ms
● SLOW 393ms
● SLOW 427ms
● OK 223ms
● SLOW 383ms
● SLOW 390ms

EMBED THIS BADGE

Show that CoinopAI ImageGen is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

CoinopAI ImageGen listed on x402-list
status
CoinopAI ImageGen uptime on x402-list
live uptime
// HTML
<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>
// Markdown
[![CoinopAI ImageGen on x402-list](https://x402-list.com/badge/coinopai-imagegen.svg)](https://x402-list.com/services/coinopai-imagegen?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<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>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/coinopai-imagegen/update.