mirrored listing x402 eip155:8453

Deploy jobs to Acurast decentralized cloud with automatic payment

Deploy jobs to Acurast decentralized cloud with automatic payment

Do you run deploy.acu.run? 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
79000 (raw units)
price
8
calls / 30d
1
unique payers
2026-09-17
updated

Provider

deploy.acu.run · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {},
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "description": "Deploy a job (`script`) or a VPS (`vps.sshKey`). Full parameter reference: https://docs.acurast.com/developers/tools/deploy-agent",
              "properties": {
                "reward": {
                  "description": "OPTIONAL reward per execution in picoACU (1 ACU = 10^12 picoACU). Omit it and the agent estimates a market rate. Do NOT compute the USDC cost yourself — the 402 response quotes the exact amount. Docs: https://docs.acurast.com/developers/tools/deploy-agent#full-job-specification.",
                  "minimum": 1,
                  "type": "number"
                },
                "script": {
                  "description": "IPFS URL of the script to deploy (ipfs://Qm...).",
                  "type": "string"
                },
                "vps": {
                  "description": "Public SSH-reachable Ubuntu VPS. `reward` optional (auto-estimated). Docs: https://docs.acurast.com/developers/tools/deploy-agent#deploy-a-vps-ssh-tunnel",
                  "properties": {
                    "callbackUrl": {
                      "type": "string"
                    },
                    "httpPort": {
                      "maximum": 65535,
                      "minimum": 1024,
                      "type": "integer"
                    },
                    "image": {
                      "enum": [
                        "ubuntu"
                      ],
                      "type": "string"
                    },
                    "maxExecutionTimeInMs": {
                      "minimum": 1,
                      "type": "integer"
                    },
                    "maxStartDelayMs": {
                      "minimum": 0,
                      "type": "integer"
                    },
                    "minCpuMultiScore": {
                      "minimum": 0,
                      "type": "number"
                    },
                    "minCpuScore": {
                      "minimum": 0,
                      "type": "number"
                    },
                    "minMemory": {
                      "minimum": 0,
                      "type": "number"
                    },
                    "minProcessorReputation": {
                      "maximum": 1000000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "minStorage": {
                      "minimum": 0,
                      "type": "number"
                    },
                    "network": {
                      "enum": [
                        "mainnet",
                        "canary"
                      ],
                      "type": "string"
                    },
                    "reward": {
                      "minimum": 1,
                      "type": "number"
                    },
                    "sshKey": {
                      "type": "string"
                    },
                    "startAt": {
                      "type": "object"
                    }
                  },
                  "required": [
                    "sshKey",
                    "maxExecutionTimeInMs"
                  ],
                  "type": "object"
                }
              },
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://deploy.acu.run"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://deploy.acu.run");
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://deploy.acu.run")
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/13275.json, and this resource appears in /discovery/resources and /discovery/search.