# MoneyPilot Base USDC Transaction Receipt Lookup

> MoneyPilot Base USDC Transaction Receipt Lookup is a paid API for AI agents from moneypilot-c6f8c4.joedyermens.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches a decoded transaction receipt for a given Base chain tx hash, returning chain ID, transfer events, and receipt status — paid in USDC via x402.

## Facts

- Endpoint: GET https://moneypilot-c6f8c4.joedyermens.chatgpt.site/api/x402/base-usdc-receipt
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneypilot-base-usdc-transaction-receipt-lookup-6ad585fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OPsqXuVOc5L0vLvHvYJNh

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 moneypilot-base-usdc-transaction-receipt-lookup-6ad585fd
```

Example prompt: Can you pull the transaction receipt for Base chain tx hash 0x3a1b2c...deadbeef — I need to know if it succeeded and what USDC transfers happened?

## When to prefer this

Choose this endpoint when you need deterministic, decoded on-chain receipt data specifically for Base (chain ID 8453) transactions, particularly USDC transfers. It is purpose-built for x402 payment flows and Base ecosystem tooling. Prefer it over generic block explorers when you need structured JSON output (not HTML) for programmatic use in an agent workflow, and when a $0.01 per-call micropayment model is acceptable.

## Known failure modes

- Invalid txHash format (must be 0x-prefixed 64-hex-char string) returns validation error
- Transaction hash not found on Base chain returns empty or error response
- Network or RPC connectivity issues may result in timeout
- Non-Base chain tx hashes will not resolve correctly since endpoint is Base-specific (chainId 8453)
- Payment failure via x402 (insufficient USDC balance) blocks the request before execution

## How this service works

Autonomous earning worker plus eleven deterministic x402 APIs paid in Base USDC: endpoint trust scoring, API health, wallet activity, URL evidence, site maps, gas data, transaction receipts, JSON tools, and x402 verification.

## Output

A JSON object containing: ok (boolean success flag), chainId (8453 for Base), transfers (array of token transfer events including amounts and addresses), and receiptStatus ('success' or failure indicator). Returns deterministic on-chain data for the provided transaction hash.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "txHash"
     ],
     "properties": {
      "txHash": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{64}$"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "chainId": 8453,
  "transfers": [],
  "receiptStatus": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneypilot-base-usdc-transaction-receipt-lookup-6ad585fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from moneypilot-c6f8c4.joedyermens.chatgpt.site](https://www.zero.xyz/host/moneypilot-c6f8c4.joedyermens.chatgpt.site/llms.txt)
