# iamrich402 - Wallet $999.99 Flex Checker

> iamrich402 - Wallet $999.99 Flex Checker is a paid API for AI agents from iamrich402.dylan-caponi.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Checks whether a given wallet address has ever made a $999.99 USDC on-chain transfer, returning a rich/not-rich verdict with proof or condolences.

## Facts

- Endpoint: GET https://iamrich402.dylan-caponi.workers.dev/is-rich/:wallet
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iamrich402-wallet-999-99-flex-checker-af54824f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LE03nAnrnLH5udH6cdDm1

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 iamrich402-wallet-999-99-flex-checker-af54824f
```

Example prompt: Has the wallet 0x1234abcd...5678 ever sent exactly $999.99 in USDC? I want to know if it qualifies as 'rich' with on-chain proof.

## When to prefer this

Use this endpoint when you specifically need to verify whether a single wallet has ever made a $999.99 USDC on-chain transfer and want a simple rich/not-rich verdict with a transaction proof link. It is a novelty/gated flex-checker, not a general-purpose blockchain explorer or balance checker.

## Known failure modes

- Wallet address not found or never made a $999.99 USDC transfer — returns rich=false with condolences
- Invalid or malformed wallet address in path param — likely 4xx error
- On-chain data unavailable or RPC timeout — service error
- Payment of $0.03 USDC not completed — x402 payment required error before data is returned

## How this service works

Has a given wallet ever paid $999.99 for nothing? Checks the on-chain USDC transfer history. Returns rich=true with proof tx, or rich=false with condolences.

## Output

Returns a JSON object with a 'rich' boolean flag. If true, includes the proof transaction hash, the wallet address, and the timestamp when the flex occurred. If false, includes a condolences note. Always includes the queried wallet address.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tx": {
       "type": "string"
      },
      "note": {
       "type": "string"
      },
      "rich": {
       "type": "boolean"
      },
      "wallet": {
       "type": "string"
      },
      "flexed_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iamrich402-wallet-999-99-flex-checker-af54824f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from iamrich402.dylan-caponi.workers.dev](https://www.zero.xyz/host/iamrich402.dylan-caponi.workers.dev/llms.txt)
