# MakeMoneyBot Origin Check

> MakeMoneyBot Origin Check is a paid API for AI agents from x402-api-rvva2a.openpouch.sh, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Probes a pay-gated HTTP endpoint URL to determine if it is reachable or dead, returning status, error details, and a failover checklist.

## Facts

- Endpoint: GET https://x402-api-rvva2a.openpouch.sh/v1/origin-check
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/makemoneybot-origin-check-630eca86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HgSB_FMt5W6p81sUNoMrE

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 makemoneybot-origin-check-630eca86
```

Example prompt: Can you check whether my pay-gated endpoint at https://forex2026.mooo.com:5030/ is actually reachable right now, and give me the failover steps if it's down?

## When to prefer this

Use this endpoint when you need to confirm whether a specific x402 pay-gated or HTTP endpoint URL is live before routing agent traffic to it, or when diagnosing why a payment-gated service has stopped responding. Prefer it over generic uptime monitors because it returns a structured kill signal and agent-oriented failover checklist tailored to x402 infrastructure.

## Known failure modes

- Payment not included or insufficient — endpoint returns HTTP 402 requiring $1 USDC on Base before probing proceeds
- Target URL is malformed or missing — request rejected with validation error
- Target endpoint is unreachable — response includes ok:false, kill_signal:'dead', and a failover_checklist
- Internal proxy error — openpouch.sh infrastructure fails to reach the target, returning a generic error message

## How this service works

x402-paid Demand Radar + money briefs + hash. Free: /v1/sample-brief, /v1/demand-radar-sample. Demand Radar GET/POST /v1/demand-radar ≥$0.25 USDC. Pack ≥$1 USDC on Base.

## Output

Returns a JSON object with an 'ok' boolean, an optional 'error' string describing any connection problem, the probed URL, the HTTP status code if one was received, a 'kill_signal' field (e.g. 'dead' or null), and a 'failover_checklist' array of remediation steps like rotating host, updating Agent402 origin, and re-probing.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Absolute http(s) URL of the pay origin / endpoint to probe"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "error": "connection refused",
  "probed": "https://forex2026.mooo.com:5030/",
  "status": null,
  "kill_signal": "dead",
  "failover_checklist": [
   "rotate host",
   "update Agent402 origin",
   "re-probe"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/makemoneybot-origin-check-630eca86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-rvva2a.openpouch.sh](https://www.zero.xyz/host/x402-api-rvva2a.openpouch.sh/llms.txt)
