# MakeMoneyBot Money Pack

> MakeMoneyBot Money 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 a paid downloadable archive (.tar.gz) containing money briefs, demand radar data, and a hash, delivered after a $1 USDC payment on Base

## Facts

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

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-money-pack-46a07048
```

Example prompt: I just sent $1 USDC on Base to pay for the MakeMoneyBot money pack — my transaction hash is 0xabc123... — can you download the money pack archive for me?

## When to prefer this

Use this endpoint when you need the full MakeMoneyBot money pack bundle (money briefs + demand radar + hash) and have already completed a $1 USDC payment on Base. This is the paid tier providing complete data, as opposed to the free sample endpoints (/v1/sample-brief or /v1/demand-radar-sample) which offer limited previews. Choose this when you want the comprehensive dataset rather than a preview.

## Known failure modes

- Missing or invalid tx hash results in payment verification failure and access denied
- Transaction hash belongs to insufficient payment amount (less than $1 USDC) returns 402 Payment Required
- Unconfirmed or pending Base transaction may be rejected until finalized
- Wrong network (not Base) transaction hash causes payment validation failure
- Malformed tx hash format returns a 400 Bad Request error

## 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

A gzip-compressed archive file (makemoneybot-money-pack.tar.gz, MIME type application/gzip) containing money briefs, demand radar data, and a content hash, unlocked after verifying the $1 USDC Base payment transaction.

## 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": {
      "tx": {
       "type": "string",
       "description": "Base USDC transfer tx hash after payment"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "file": "makemoneybot-money-pack.tar.gz",
  "mimeType": "application/gzip"
 }
}
```

## More

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