mirrored listing x402 eip155:8453

Text-to-image generation powered by FLUX

Text-to-image generation powered by FLUX.2 [pro]. Send a prompt, get back a 1024x1024 image as base64 JSON or raw bytes, plus a durable direct URL. No API key or account needed.

Do you run lotusnetworkapi.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
80000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated

Provider

lotusnetworkapi.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3268C9434D8603957420f04510CA0ff6097A5C64",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "80000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "prompt": "a cyberpunk city skyline at dusk, neon reflections"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "absoluteUrl": "https://lotusnetworkapi.com/api/v1/image/9f2c4a1e7b3d5f8091a2b3c4d5e6f708",
          "image": "<base64-encoded image bytes>",
          "mimeType": "image/webp",
          "model": "black-forest-labs/flux-2-pro",
          "prompt": "a cyberpunk city skyline at dusk, neon reflections",
          "success": true
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "format": {
                  "enum": [
                    "json",
                    "binary"
                  ],
                  "type": "string"
                },
                "prompt": {
                  "description": "Text description of the image to generate",
                  "type": "string"
                }
              },
              "required": [
                "prompt"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "absoluteUrl": {
                  "type": "string"
                },
                "downloadUrl": {
                  "type": "string"
                },
                "image": {
                  "description": "Base64-encoded image",
                  "type": "string"
                },
                "mimeType": {
                  "type": "string"
                },
                "model": {
                  "type": "string"
                },
                "prompt": {
                  "type": "string"
                },
                "retentionDays": {
                  "type": "number"
                },
                "success": {
                  "type": "boolean"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://lotusnetworkapi.com/api/v1/generate-image"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://lotusnetworkapi.com/api/v1/generate-image");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://lotusnetworkapi.com/api/v1/generate-image")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/5380.json, and this resource appears in /discovery/resources and /discovery/search.