# Ducat Quick Token & Wallet Report

> Ducat Quick Token & Wallet Report is a paid API for AI agents from ducat-x402-api.vali0puha.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-10).

Returns a live native-balance and nonce snapshot for any EVM wallet address across Ethereum, Base, and Arbitrum.

## Facts

- Endpoint: GET https://ducat-x402-api.vali0puha.workers.dev/wallet/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ducat-quick-token-wallet-report-7513f1b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ht6uOwuhK40rJw3Y6tFvp

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 ducat-quick-token-wallet-report-7513f1b1
```

Example prompt: What's the current native token balance and nonce for wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 across Ethereum, Base, and Arbitrum?

## When to prefer this

Choose this endpoint when you need a quick, real-time native-token balance and nonce snapshot for an EVM wallet across Ethereum, Base, and Arbitrum in a single call, especially in agent workflows that require pay-per-use pricing via x402 without API key management.

## Known failure modes

- Invalid EVM address format (not 0x + 40 hex chars) returns a 400 error
- Payment failure or insufficient USDC balance via x402 returns a 402 Payment Required
- RPC node unavailability for one or more chains may result in partial or missing chain data
- Rate limiting or worker timeout on Cloudflare may return a 5xx error

## How this service works

Instant token snapshot (price, market cap, 24h change, supply) for a CoinGecko coin id, or a live native-balance/nonce snapshot for any EVM wallet across Ethereum, Base, and Arbitrum. Paid per call via x402 (USDC on Base).

## Output

A JSON object containing the queried wallet address, a per-chain breakdown of native token balance and nonce (for Ethereum, Base, and Arbitrum), the data source, and a generated_at timestamp.

## 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",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Any EVM address (0x + 40 hex chars)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "chains": {
       "type": "object"
      },
      "source": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "generated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ducat-quick-token-wallet-report-7513f1b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ducat-x402-api.vali0puha.workers.dev](https://www.zero.xyz/host/ducat-x402-api.vali0puha.workers.dev/llms.txt)
