ToolAssay

Compose or edit using 1-3 input images on Venice models — merge subjects, transf

Compose or edit using 1-3 input images on Venice models — merge subjects, transfer style, or blend scenes, paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=inpaint. Venice field is `modelId` (not `model`); this gateway maps `m

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.025listed price per call
n/aprice 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/multi-edit

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

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "images": [
      "https://example.com/a.png",
      "https://example.com/b.png"
    ],
    "modelId": "qwen-image-2-edit",
    "prompt": "Place the subject from image 1 into the scene from image 2",
    "return_binary": false
  },
  "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": {
          "additionalProperties": true,
          "example": {
            "images": [
              "<base64>"
            ],
            "modelId": "qwen-image-2-edit",
            "prompt": "combine"
          },
          "properties": {
            "images": {
              "description": "Array of 1-3 source images (URLs or base64 data URIs).",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "model": {
              "description": "Accepted alias for modelId \u2014 gateway rewrites to modelId before Venice.",
              "type": "string"
            },
            "modelId": {
              "description": "Venice inpaint/edit model id (required by Venice). See GET /api/v1/models?type=inpaint.",
              "type": "string"
            },
            "prompt": {
              "description": "Instruction describing how to combine or edit the inputs.",
              "type": "string"
            },
            "return_binary": {
              "description": "Gateway-owned. Omit for a raw image file (default). false = JSON { id, images: [base64], format } like generate. true = force the file. Stripped before Venice.",
              "type": "boolean"
            }
          },
          "required": [
            "modelId",
            "images",
            "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": {
            "contentType": {
              "type": "string"
            },
            "note": {
              "type": "string"
            },
            "type": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON