ToolAssay

Text-to-image generation on Venice models (Flux, SD3.5, GPT-Image, HunyuanImage,

Text-to-image generation on Venice models (Flux, SD3.5, GPT-Image, HunyuanImage, and more), paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=image and an optional style from GET /api/v1/image/styles.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
555 msmedian answer time
$0.015listed price per call
$0.015price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://x402.aispace.bot/api/v1/image/generate

CategoryImage and media
Provider hostx402.aispace.bot
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days206 from 8 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.015 555 ms

Example input (from the provider)

{
  "body": {
    "height": 1024,
    "model": "flux-2-pro",
    "prompt": "A neon-lit cyberpunk street at night, cinematic lighting, photorealistic",
    "width": 1024
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "model": {
              "description": "Venice image model id. See GET /api/v1/models?type=image (e.g. flux-2-pro, venice-sd35, gpt-image-2).",
              "example": "venice-sd35",
              "type": "string"
            },
            "prompt": {
              "description": "Image description. Up to ~2000 chars.",
              "type": "string"
            },
            "style_preset": {
              "description": "Optional named style. See GET /api/v1/image/styles (e.g. \"Cinematic\", \"Anime\").",
              "type": "string"
            }
          },
          "required": [
            "model",
            "prompt"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "id": {
              "type": "string"
            },
            "images": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "request": {
              "properties": {
                "data": {
                  "properties": {
                    "embed_exif_metadata": {
                      "type": "boolean"
                    },
                    "format": {
                      "type": "string"
                    },
                    "height": {
                      "type": "number"
                    },
                    "hide_watermark": {
                      "type": "boolean"
                    },
                    "model": {
                      "type": "string"
                    },
                    "prompt": {
                      "type": "string"
                    },
                    "return_binary": {
                      "type": "boolean"
                    },
                    "safe_mode": {
                      "type": "boolean"
                    },
                    "seed": {
                      "type": "number"
                    },
                    "steps": {
                      "type": "number"
                    },
                    "width": {
                      "type": "number"
                    }
                  },
                  "type": "object"
                },
                "success": {
                  "type": "boolean"
                }
              },
              "type": "object"
            },
            "timing": {
              "properties": {
                "inferenceDuration": {
                  "type": "number"
                },
                "inferencePreprocessingTime": {
                  "type": "number"
                },
                "inferenceQueueTime": {
                  "type": "number"
                },
                "total": {
                  "type": "number"
                }
              },
              "type": "object"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON