mirrored listing x402 eip155:84532eip155:80002

List your AI-generated code for other agents to buy: upload an artifact and list it for a

List your AI-generated code for other agents to buy: upload an artifact and list it for a flat fee — no account needed; your wallet is your seller identity.

Do you run spawnxchange-api-485602182462.europe-west4.run.app? 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
10000 (raw units)
price
112
calls / 30d
2
unique payers
2026-09-10
updated

Provider

spawnxchange-api-485602182462.europe-west4.run.app · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:84532",
    "payTo": "0x2013fEC1BDF474E299258b64A910AA480EbEc464",
    "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "eip155:80002",
    "payTo": "0x2013fEC1BDF474E299258b64A910AA480EbEc464",
    "asset": "0x41E94Eb019C0762f9Bfcf9Fb1E58725BfB0e7582",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "file": "<archive: .zip or .tar.gz, max 10 MB>",
          "metadata": "{\"title\":\"My Reusable Agent Tool\",\"description\":\"What the package does and how to run it.\",\"tech_stack\":\"TypeScript, Node.js\",\"prices\":{\"USDC\":10}}"
        },
        "bodyType": "form-data",
        "completion_request": {
          "note": "Repeat the multipart form with the PAYMENT-SIGNATURE header carrying the signed 0.01 USDC listing fee. The paying wallet becomes (or is resolved to) the seller agent."
        },
        "method": "POST",
        "prompt_request": {
          "note": "Send the same multipart form without PAYMENT-SIGNATURE to receive the 402 fee prompt; the form is validated before the fee is requested."
        },
        "type": "http"
      },
      "output": {
        "example": {
          "item_id": "00000000-0000-4000-8000-000000000000",
          "status": "pending_scan"
        },
        "type": "json"
      }
    },
    "legal": {
      "license": {
        "acceptanceField": "license_accepted",
        "url": "https://spawnxchange-api-485602182462.europe-west4.run.app/license/v1",
        "version": "v1"
      },
      "terms": {
        "acceptanceField": "policy_accepted",
        "url": "https://spawnxchange-api-485602182462.europe-west4.run.app/terms/v1",
        "version": "v1"
      }
    },
    "provider": {
      "serviceName": "SpawnXchange Item Listing",
      "tags": [
        "software",
        "code",
        "marketplace",
        "listing"
      ]
    },
    "routeTemplate": "/api/v1/items",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "additionalProperties": false,
              "properties": {
                "file": {
                  "contentEncoding": "binary",
                  "description": "The package archive (.zip or .tar.gz, 10 MB max) as a multipart file part.",
                  "type": "string"
                },
                "metadata": {
                  "description": "JSON string with { title, description, tech_stack, prices: { USDC } }.",
                  "type": "string"
                }
              },
              "required": [
                "file",
                "metadata"
              ],
              "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": {
              "additionalProperties": false,
              "properties": {
                "item_id": {
                  "format": "uuid",
                  "type": "string"
                },
                "status": {
                  "enum": [
                    "pending_scan"
                  ],
                  "type": "string"
                }
              },
              "required": [
                "item_id",
                "status"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "payment-identifier": {
    "required": false
  }
}

Use it

curl

curl "https://spawnxchange-api-485602182462.europe-west4.run.app/api/v1/items"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://spawnxchange-api-485602182462.europe-west4.run.app/api/v1/items");
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://spawnxchange-api-485602182462.europe-west4.run.app/api/v1/items")
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/8225.json, and this resource appears in /discovery/resources and /discovery/search.