# Blockscout Address Tabs Counters

> Blockscout Address Tabs Counters 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-12).

Returns summary activity counts (transactions, logs, token transfers, internal transactions, withdrawals, validations, token balances) for a specific blockchain address on a given chain

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/addresses/%7Baddress_hash_param%7D/tabs-counters
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-address-tabs-counters-1ea52785
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VvcrIDtrHxMuT-dwBgck_

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-address-tabs-counters-1ea52785
```

Example prompt: Using Blockscout, give me the activity summary counts for address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum — how many transactions, token transfers, and internal transactions has it made?

## When to prefer this

Choose this endpoint when you need a quick numeric summary of an address's activity across multiple activity categories without paginating through full lists. It is ideal for dashboards, eligibility checks, or pre-filtering before fetching detailed records. Prefer this over full transaction list endpoints when you only need counts, not the actual records.

## Known failure modes

- Invalid or malformed address_hash_param returns an error or empty response
- Unsupported or incorrect chain_id returns a 404 or chain-not-found error
- Address with zero on-chain activity returns all counts as 0
- Rate limiting may occur under high request volume
- Network-specific endpoints may not be available for all chain IDs

## 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

A JSON object with integer counts for each activity tab of the address: transactions_count, logs_count, token_transfers_count, internal_transactions_count, token_balances_count, validations_count, and withdrawals_count. All fields are numeric and represent total historical counts for that address on the specified chain.

## 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": {
  "logs_count": 0,
  "validations_count": 0,
  "withdrawals_count": 0,
  "transactions_count": 0,
  "token_balances_count": 0,
  "token_transfers_count": 0,
  "internal_transactions_count": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-address-tabs-counters-1ea52785/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)
