# x402.shizu.me Toll Earnings Checker

> x402.shizu.me Toll Earnings Checker is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns accrued tollbooth earnings (credits owed and USD equivalent) for a specified payout wallet address.

## Facts

- Endpoint: GET https://x402.shizu.me/toll/earnings
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-toll-earnings-checker-a42586f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B-8X9VH8kt-zC5GXgdonW

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 x402-shizu-me-toll-earnings-checker-a42586f2
```

Example prompt: How much have I earned from my x402 tollbooth so far? Check the accrued credits and USD equivalent for my payout wallet 0xAbC123...

## When to prefer this

Use this endpoint when an x402 operator wants to check how much revenue their tollbooth domains have generated and how much is pending payout, expressed in both credits and USD. Prefer this over generic balance endpoints when specifically querying toll/fetch-derived earnings.

## Known failure modes

- Invalid or unregistered wallet address returns empty or zero earnings
- Wallet not associated with any registered domains returns no data
- Network or service unavailability returns 5xx error
- Malformed wallet address returns 4xx validation error

## How this service works

Check accrued tollbooth earnings for a payout wallet: credits owed and USD equivalent. Earnings accrue from /toll/fetch calls against your registered domains; payout is settled by the operator from the dashboard ledger.

## Output

Returns the accrued credits owed to the payout wallet and their USD equivalent, reflecting revenue generated from /toll/fetch calls against the operator's registered domains, pending settlement from the dashboard ledger.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wallet": "0x..",
  "usd_owed": 0.4,
  "credits_owed": 400
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-toll-earnings-checker-a42586f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
