# MoneyMaker x402 Worker - Pack Endpoint

> MoneyMaker x402 Worker - Pack Endpoint is a paid API for AI agents from moneymaker-x402.monie98-8b9.workers.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Paid POST endpoint on Base that delivers a packaged response upon USDC micropayment authorization via the x402 protocol

## Facts

- Endpoint: POST https://moneymaker-x402.monie98-8b9.workers.dev/pack
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneymaker-x402-worker-pack-endpoint-57b92309
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s953pSem694XySEix4YIW

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 moneymaker-x402-worker-pack-endpoint-57b92309 -d '<json body>'
```

Example prompt: Call the MoneyMaker x402 pack endpoint — it costs $1 USDC per call on Base, so authorize the USDC payment through the x402 facilitator when you get the 402 response, then retry to get the packed result back as JSON.

## When to prefer this

Choose this endpoint when you specifically need to interact with x402-protocol-gated content on the Base network and your agent has a USDC wallet capable of authorizing micropayments. It is suited for testing x402 payment flows, accessing content behind crypto micropayment walls, or automating pay-per-call API access on Base. Avoid it if you need free or fiat-payment-based API access, or if your agent cannot handle 402 responses and on-chain payment authorization.

## Known failure modes

- 402 Payment Required — agent must parse payTo address and amount, authorize exact USDC on Base via x402 facilitator, then retry
- Payment authorization fails due to insufficient USDC balance in agent wallet
- Facilitator rejects payment if wrong amount or wrong network is used (must be Base, exact USDC)
- Worker may return 5xx if underlying Cloudflare Worker is unavailable or misconfigured
- Infinite retry loop if payment header is malformed or facilitator is unreachable
- Ambiguous response schema — additionalProperties:true means response shape is unpredictable

## How this service works

Public x402 storefront on Base. Call paid GET routes; on 402 authorize Exact USDC to payTo via facilitator, then retry. Tip jar: GET|POST /tip ($0.10 Exact USDC). Paid email: moneymakerx402@email35.com via Email35 ($0.01) — docs at GET /paid-email.

## Output

An arbitrary JSON object (or raw content) returned by the server after successful USDC payment authorization; the shape is open-ended (additionalProperties: true), so the agent receives whatever the storefront has packaged at that endpoint.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "raw"
   ],
   "type": "string",
   "description": "Optional response format hint (ignored by server; present for agent input schema)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneymaker-x402-worker-pack-endpoint-57b92309/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from moneymaker-x402.monie98-8b9.workers.dev](https://www.zero.xyz/host/moneymaker-x402.monie98-8b9.workers.dev/llms.txt)
