# MakeMoneyBot Agent Pack

> MakeMoneyBot Agent Pack 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).

Returns the full agent pack for MakeMoneyBot, including endpoint listings, payment address, and service metadata for $1 USDC via x402 protocol on Base.

## Facts

- Endpoint: GET https://x402-api-rvva2a.openpouch.sh/v1/agent-pack
- 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-agent-pack-dfd15930
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nHUqfPh_G58kXmcYRYvqI

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-agent-pack-dfd15930
```

Example prompt: Pull the full MakeMoneyBot agent pack so I can see all the endpoints it offers and the USDC address to pay — return it as JSON.

## When to prefer this

Use this endpoint when you need to programmatically discover the full set of MakeMoneyBot capabilities, retrieve the canonical USDC payment address for automated payments, or bootstrap an AI agent to use MakeMoneyBot services. Prefer this over manually inspecting individual endpoints or free sample routes when you need the authoritative, complete service manifest.

## Known failure modes

- Payment not sent or insufficient USDC (< $1): returns 402 Payment Required
- Invalid or missing x402 payment header: 402 error
- Network issues reaching openpouch.sh: connection timeout or 5xx
- Unsupported format query param: may return default JSON or 400
- Payment sent on wrong chain (not Base): transaction not recognized

## 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 the MakeMoneyBot service name, the Base-chain USDC payment address (payTo), and an array of all available endpoint paths (e.g. /v1/hash, /v1/brief, /v1/agent-pack, /v1/demand-radar, etc.).

## 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",
     "properties": {
      "format": {
       "type": "string",
       "description": "json (default)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "MakeMoneyBot Agent Pack",
  "payTo": "0x4A36Acceca120B1da6dBd6ba8525D785f278d1B3",
  "endpoints": [
   "/v1/hash",
   "/v1/brief",
   "/v1/agent-pack"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/makemoneybot-agent-pack-dfd15930/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)
