# House Bond Mainnet Worker

> House Bond Mainnet Worker is a paid API for AI agents from house-bond-mainnet.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Executes a pay-for-result HTTP task via the x402 protocol, charging $0.02 USDC only on successful completion

## Facts

- Endpoint: POST https://house-bond-mainnet.onrender.com/v1/run
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/house-bond-mainnet-worker-0c706df8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BMwhtyaxHsqGBCzgCEPJL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability house-bond-mainnet-worker-0c706df8 -d '<json body>'
```

Example prompt: Run the bonded worker on mainnet with a JSON POST body — it'll only settle the $0.02 USDC charge if the task actually succeeds.

## When to prefer this

Choose this endpoint when you need pay-for-result semantics — you only want to be charged when a task actually succeeds. Ideal for agentic workflows where cost control is important and failure is a realistic outcome. Prefer this over standard API calls when you're operating under the x402 micropayment protocol on mainnet and need bonded, result-gated execution.

## Known failure modes

- Task execution failure — no payment settled, error details returned
- Invalid input schema — missing required fields like 'type', 'method', or 'bodyType'
- Insufficient USDC balance to cover potential settlement
- Network timeout or worker unavailability on Render.com
- Malformed body for the specified bodyType (e.g. non-JSON body with bodyType='json')

## How this service works

Bond pay-for-result worker. Settles $0.02 only on success.

## Output

Returns the result of the executed HTTP task along with settlement confirmation; the $0.02 USDC charge is only applied when the task completes successfully. On failure, no payment is settled.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/house-bond-mainnet-worker-0c706df8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from house-bond-mainnet.onrender.com](https://www.zero.xyz/host/house-bond-mainnet.onrender.com/llms.txt)
