API · x402
5-chain EVM token-balance scan: give any address, get every token balance found on Base…
5-chain EVM token-balance scan: give any address, get every token balance found on Base, Ethereum, Arbitrum, zkSync Era and Polygon in one call.
by signals.sebastiaan-ba3.workers.dev · verified provider · updated 2026-09-24
What it does
5-chain EVM token-balance scan: give any address, get every token balance found on Base, Ethereum, Arbitrum, zkSync Era and Polygon in one call.
Tags: wallet · airdrop · dust · evm · multichain · crypto
Use with an agent
- Discover. Agents find this listing with
GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP toolsearch_resources, or/discovery/resources. - Inspect. Fetch
/resources/20009.jsonfor the price and payment options. - Pay. Call
GET https://signals.sebastiaan-ba3.workers.dev/wallet-scan. The provider answers402with its payment requirements. An x402 client signs one of the options below and retries withPAYMENT-SIGNATURE. - Execute. The provider returns
200with the data. Agent Bazaar is not in the request path and never sees your payment.
For humans
You don't need an account or an API key; you need a wallet holding a small amount of USDC on Base, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.
Pricing & payment
- Price
- $0.05 / request
- Protocol
- x402 v1
- Auth
- No account or API key. Pay per request.
- Networks
- Base
x402 payment requirements
| Scheme | Network | Asset | Amount | Pay to | Timeout |
|---|---|---|---|---|---|
| exact | Base base | USDC | $0.05 | 0x202B73254C28fA012BD11ff50425D94534b95594 | 60s |
accepts[] (raw JSON)
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x202B73254C28fA012BD11ff50425D94534b95594",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"amountUsd": 0.05,
"maxTimeoutSeconds": 60
}
]Examples
curl
curl "https://signals.sebastiaan-ba3.workers.dev/wallet-scan"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paidJavaScript
const res = await fetch("https://signals.sebastiaan-ba3.workers.dev/wallet-scan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://signals.sebastiaan-ba3.workers.dev/wallet-scan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerDetails
- Provider
- signals.sebastiaan-ba3.workers.dev
- Endpoint
- https://signals.sebastiaan-ba3.workers.dev/wallet-scan
- Machine-readable
/resources/20009.json