# Blockscout Token Info by Address

> Blockscout Token Info by Address is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-10).

Fetch detailed metadata and market data for an ERC-20 or other token by its contract address on a specific blockchain network

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/tokens/%7Baddress_hash_param%7D
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-token-info-by-address-042d7180
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_adq2HuVypBcLjguGp_yeI

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 blockscout-token-info-by-address-042d7180
```

Example prompt: Can you look up the token details for contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum (chain ID 1) using Blockscout — I need the symbol, decimals, circulating supply, market cap, and 24h volume.

## When to prefer this

Use this endpoint when you need comprehensive token metadata and market statistics for a specific token contract address on a known blockchain network. It is ideal when you have the contract address and chain ID and want authoritative on-chain data from Blockscout's indexer rather than off-chain aggregators like CoinGecko. Prefer this over general search endpoints when you already know the exact address and just need the details.

## Known failure modes

- Invalid or non-existent contract address returns 404 or empty result
- Unsupported chain_id returns an error or no data
- Non-token contract address (e.g. a wallet or DEX contract) may return empty token fields
- Rate limiting or payment failure (x402) blocks the request
- Some fields like icon_url or exchange_rate may be null for low-liquidity or unlisted tokens

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

Returns a JSON object with the token's name, symbol, decimals, icon URL, reputation score, 24-hour trading volume, total supply, exchange rate, holders count, circulating supply, circulating market cap, bridge type (if bridged), foreign address, and origin chain ID — covering both metadata and live market metrics for the token contract.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "chain_id": {
       "type": "string"
      },
      "address_hash_param": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "string",
  "type": {},
  "symbol": "string",
  "decimals": "string",
  "icon_url": "string",
  "reputation": "string",
  "volume_24h": "string",
  "bridge_type": "string",
  "address_hash": "string",
  "total_supply": "string",
  "exchange_rate": "string",
  "holders_count": "string",
  "foreign_address": "string",
  "origin_chain_id": "string",
  "circulating_supply": "string",
  "circulating_market_cap": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-token-info-by-address-042d7180/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
