Verified Deploy

Use when an agent needs to publish a multi-file HTML/CSS/JS site to a public URL without an account or API key. It verifies index.html, linked assets, and required selectors before publishing. Intro price is 0.01 USDC per successful publish until August 16, 2026 or 3 third-party payers. Failed checks neither publish nor settle payment. Successful releases are versioned for rollback.

InferenceLiveeip155:8453Exactvia cdp
DeploymentStatic-siteVerificationRollbackAi-agents
Calls · 30d
1↓ 14%
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far.
$1.09
Verified settled volume
12 settlements proven x402 by their on-chain EIP-3009 marker.
$0.010
Listed price
As published in the catalog. Always read the live 402 before paying.
1
Calls · 30d
Upstream's own call count for this endpoint, not ours.
1
Unique payers · 30d
Last called 2026-08-25 03:02Z
—
Upstream on-chain volume
Reported by the source catalog.
Paid to
0x94B1Ead544BFe355759C3B5f7dd9d6ac38303cEE

The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.

Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Provider

The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.

Accepts

The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.

0.01USDC≈ $0.01 USD
on Base · exact scheme

Pay 0.01 USDC on Base to 0x94B1…03cEE. The signed payment is good for 5 minutes.

USD Coin contract
0x8335…02913
Payment window
5 minutes
As published
10000 smallest units
The catalog’s raw entry
[
  {
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "extra": {
      "name": "USD Coin",
      "version": "2"
    },
    "payTo": "0x94B1Ead544BFe355759C3B5f7dd9d6ac38303cEE",
    "amount": "10000",
    "scheme": "exact",
    "network": "eip155:8453",
    "maxTimeoutSeconds": 300
  }
]

Extensions

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "files": [
            {
              "path": "index.html",
              "content": "<link rel=\"stylesheet\" href=\"styles.css\"><h1 id=\"ready\">Live</h1>"
            },
            {
              "path": "styles.css",
              "content": "#ready { color: green; }"
            }
          ],
          "checks": [
            {
              "path": "index.html",
              "type": "entrypoint"
            },
            {
              "path": "index.html",
              "type": "linked-assets"
            },
            {
              "path": "/",
              "type": "selector",
              "exists": "#ready"
            }
          ]
        },
        "type": "http",
        "method": "POST",
        "bodyType": "json"
      },
      "output": {
        "type": "json",
        "example": {
          "ok": true,
          "checks": [
            {
              "type": "entrypoint",
              "detail": "index.html is present",
              "passed": true,
              "target": "/"
            },
            {
              "type": "linked-assets",
              "detail": "All relative src/href assets exist",
              "passed": true,
              "target": "/"
            },
            {
              "type": "selector",
              "detail": "Found selector: #ready",
              "passed": true,
              "target": "/"
            }
          ],
          "site_id": "site_demo91c2",
          "verdict": "verified_and_published",
          "site_url": "https://verified-deploy.example/s/site_demo91c2",
          "version_id": "ver_demoa47f",
          "manage_token": "vd_demo_manage_token_not_valid_for_any_site",
          "manage_token_note": "Store this token now. It is never shown again.",
          "previous_version_id": null
        }
      }
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "properties": {
            "body": {
              "type": "object",
              "allOf": [
                {
                  "if": {
                    "required": [
                      "site_id"
                    ]
                  },
                  "then": {
                    "required": [
                      "manage_token"
                    ]
                  }
                },
                {
                  "if": {
                    "required": [
                      "manage_token"
                    ]
                  },
                  "then": {
                    "required": [
                      "site_id"
                    ]
                  }
                }
              ],
              "required": [
                "files"
              ],
              "properties": {
                "files": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "oneOf": [
                      {
                        "not": {
                          "required": [
                            "content_base64"
                          ]
                        },
                        "required": [
                          "content"
                        ]
                      },
                      {
                        "not": {
                          "required": [
                            "content"
                          ]
                        },
                        "required": [
                          "content_base64"
                        ]
                      }
                    ],
                    "required": [
                      "path"
                    ],
                    "properties": {
                      "path": {
                        "type": "string",
                        "minLength": 1,
                        "description": "Relative file path such as index.html or assets/app.js. Absolute paths and path traversal are rejected."
                      },
                      "content": {
                        "type": "string",
                        "description": "UTF-8 text content. Provide exactly one of content or content_base64."
                      },
                      "content_type": {
                        "type": "string",
                        "description": "Optional MIME type. When omitted, it is inferred from path."
                      },
                      "content_base64": {
                        "type": "string",
                        "description": "Base64-encoded binary content. Provide exactly one of content or content_base64.",
                        "contentEncoding": "base64"
                      }
                    },
                    "additionalProperties": false
                  },
                  "maxItems": 100,
                  "minItems": 1,
                  "description": "Static site files. At least one file is required; the deployment may contain at most 100 files."
                },
                "checks": {
                  "type": "array",
                  "items": {
                    "oneOf": [
                      {
                        "type": "object",
                        "required": [
                          "type",
                          "path"
                        ],
                        "properties": {
                          "path": {
                            "const": "index.html",
                            "description": "Required site entrypoint."
                          },
                          "type": {
                            "const": "entrypoint"
                          }
                        },
                        "additionalProperties": false
                      },
                      {
                        "type": "object",
                        "required": [
                          "type",
                          "path"
                        ],
                        "properties": {
                          "path": {
                            "const": "index.html",
                            "description": "HTML document whose relative src and href assets must exist."
                          },
                          "type": {
                            "const": "linked-assets"
                          }
                        },
                        "additionalProperties": false
                      },
                      {
                        "type": "object",
                        "required": [
                          "type",
                          "path",
                          "exists"
                        ],
                        "properties": {
                          "path": {
                            "type": "string",
                            "description": "HTML route to inspect, for example /."
                          },
                          "type": {
                            "const": "selector"
                          },
                          "exists": {
                            "type": "string",
                            "maxLength": 100,
                            "minLength": 1,
                            "description": "Required simple CSS selector: an ID, class, or element selector."
                          }
                        },
                        "additionalProperties": false
                      }
                    ]
                  },
                  "maxItems": 20,
                  "description": "Verification checks. entrypoint and linked-assets run automatically; declaring them makes the requested evidence explicit. Up to 20 checks may be supplied."
                },
                "site_id": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Optional. Include the site_id returned by the first successful deployment to update that site."
                },
                "manage_token": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Optional. Required together with site_id when updating an existing site. It is returned only by the first successful deployment."
                }
              },
              "additionalProperties": false
            },
            "type": {
              "type": "string",
              "const": "http"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            }
          },
          "additionalProperties": false
        },
        "output": {
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string"
            },
            "example": {
              "type": "object",
              "required": [
                "ok",
                "verdict",
                "site_id",
                "version_id",
                "site_url",
                "previous_version_id",
                "checks"
              ],
              "properties": {
                "ok": {
                  "type": "boolean",
                  "description": "True only when all checks passed and the version was published."
                },
                "error": {
                  "type": "string",
                  "description": "Present when verification fails."
                },
                "checks": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "required": [
                      "type",
                      "target",
                      "passed",
                      "detail"
                    ],
                    "properties": {
                      "type": {
                        "enum": [
                          "entrypoint",
                          "linked-assets",
                          "selector",
                          "status",
                          "text",
                          "asset"
                        ],
                        "type": "string"
                      },
                      "detail": {
                        "type": "string"
                      },
                      "passed": {
                        "type": "boolean"
                      },
                      "target": {
                        "type": "string"
                      }
                    },
                    "additionalProperties": false
                  }
                },
                "site_id": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Stable site identifier. Reuse it with manage_token for updates."
                },
                "verdict": {
                  "enum": [
                    "verified_and_published",
                    "rejected_not_published"
                  ],
                  "type": "string"
                },
                "site_url": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Absolute public URL for a successfully published site; null on rejection."
                },
                "version_id": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Immutable version identifier; null when no version was published."
                },
                "manage_token": {
                  "type": "string",
                  "description": "Returned only by the first successful deployment. Never returned again."
                },
                "manage_token_note": {
                  "type": "string",
                  "description": "Storage warning returned with manage_token."
                },
                "previous_version_id": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Previously active verified version, when one exists."
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    }
  }
}

Provenance

Seen in the source catalog
2026-08-25 03:02Z
Last indexed by Roundhouse
2026-09-24 02:40Z
Last enriched (probe, favicon, geo)
2026-09-20 12:45Z
x402 version
2
Max timeout
300s
Liveness probe
HTTP 200
Report

Hand this page to an agent

Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.

GET api.roundhouseai.io/v0/endpoints

This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.

Open skill.md
Show the prompt
Using Roundhouse, look up the x402 service Verified Deploy and tell me whether it is
worth paying: what a call costs, whether the endpoint answered when last probed, and what
its payment record actually shows.

curl -s 'https://api.roundhouseai.io/v0/endpoints?q=Verified%20Deploy'
curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>'

Then call it: read the price from the live 402 at https://verified-deploy.road-me-band.chatgpt.site/api/deploy, never from
a cached figure, and pay with an x402 client.

The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except
/v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402,
or use an organization key from https://roundhouseai.io/dashboard/team.

If you do not have Roundhouse tools or skills installed, read
https://roundhouseai.io/skill.md first — it is the whole procedure.