# EVM Wallet Nonce Lookup

> EVM Wallet Nonce Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-15).

Returns the current transaction nonce for a given EVM wallet address on a specified blockchain network

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/evm-nonce
- Price: $0.059/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-wallet-nonce-lookup-bfcf5a5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pOWaKcwtWktc-58gYtSFu

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 evm-wallet-nonce-lookup-bfcf5a5a
```

Example prompt: What's the current transaction nonce for the wallet 0xAbC1234567890abcdef1234567890abcdef123456 on the Base network?

## When to prefer this

Use this endpoint when you need the current nonce for an EVM wallet address before constructing or signing a transaction, or when verifying how many transactions an address has sent. Supports Ethereum, Base, Polygon, Arbitrum, and Optimism. Requires no API key — pay $0.002 USDC per call via x402 on Base mainnet.

## Known failure modes

- Invalid or malformed wallet address (not 0x-prefixed or not 42 characters) returns an error
- Unsupported network value returns a validation error
- Network RPC unavailable or timeout causes a service error
- Address with no transaction history returns nonce of 0

## How this service works

Returns the current nonce (confirmed transaction count) and pending nonce for any EVM wallet address. Supports Ethereum, Base, Polygon, Arbitrum, and Optimism. Use the pending nonce when building new transactions. $0.002/call — 33% below comparable market rate.

## Output

The current nonce (transaction count) for the specified EVM wallet address on the requested network, indicating how many transactions have been sent from that address and what nonce value to use for the next transaction.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x1234567890123456789012345678901234567890",
   "network": "base"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-wallet-nonce-lookup-bfcf5a5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
