# AgentToll Base Address Analytics

> AgentToll Base Address Analytics is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a snapshot of a Base blockchain address including ETH balance, transaction count, Basename, and whether it is a contract or EOA.

## Facts

- Endpoint: GET https://agenttoll.app/api/base/address/%7Baddress%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-base-address-analytics-29fe0a24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AoQA-cTq7ZyyMHAsrOiXv

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 agenttoll-base-address-analytics-29fe0a24
```

Example prompt: Can you look up the onchain snapshot for Base address 0xe553...56f8 — I want to know its ETH balance, transaction count, whether it's a contract or a regular wallet, and its Basename if it has one?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.001 USDC) single-call snapshot of a Base address — covering balance, transaction count, Basename, and contract/EOA classification — without needing API keys. Prefer it over general Ethereum explorers when the target is specifically on the Base L2 chain and you want agent-native, x402-payable access.

## Known failure modes

- Invalid or malformed address returns an error response
- Address not found or never used on Base may return zeroed-out fields
- Network latency on Base RPC could cause delayed or failed responses
- Non-Base addresses (e.g. Ethereum mainnet) may return no results

## How this service works

Base-native onchain data for AI agents — gas, token prices by contract, address analytics, DEX pools, new-token radar. From $0.001 a call in USDC via x402. No API keys. Open source.

## Output

Returns a JSON object with the timestamp of the lookup, chain (base), the queried address, total transaction count, registered Basename (if any), current ETH balance, and a boolean indicating whether the address is a smart contract.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-08-05T13:31:58.678Z",
  "chain": "base",
  "address": "0xe553...56f8",
  "txCount": 42,
  "basename": "agenttoll.base.eth",
  "ethBalance": 0.0019,
  "isContract": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-base-address-analytics-29fe0a24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
