# Arkham Address Batch Intelligence

> Arkham Address Batch Intelligence is a paid API for AI agents from api.arkm.com, paid per call via x402, $50/call, status unknown (last checked 2026-09-14).

Look up on-chain identity, entity labels, and metadata for multiple blockchain addresses in a single request

## Facts

- Endpoint: POST https://api.arkm.com/x402/intelligence/address-batch
- Price: $50/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-address-batch-intelligence-99797863
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yXJYk59YuOlEEUrJaLN0u

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 arkham-address-batch-intelligence-99797863 -d '<json body>'
```

Example prompt: Can you look up these three Ethereum addresses for me — 0x28C6c06298d514Db089934071355E5743bf21d60, 0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B, and 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE — and tell me which entities or exchanges Arkham Intelligence has labeled them as?

## When to prefer this

Choose this endpoint when you need to resolve multiple blockchain addresses to real-world entities in a single API call, saving cost and round-trips compared to single-address lookups. Ideal for compliance workflows, on-chain investigation, or enriching transaction data at scale. Prefer Arkham specifically when you need curated entity intelligence including exchange attribution, social profiles, and organizational metadata — not just raw on-chain data.

## Known failure modes

- Invalid or malformed address returns no entry or error for that address
- Unrecognized or unlabeled address returns minimal data with no arkhamEntity or arkhamLabel
- Insufficient USDC balance or x402 payment failure results in request rejection
- Exceeding batch size limits may result in partial responses or errors
- Network timeout if too many addresses are submitted simultaneously

## How this service works

Fetch Arkham address intelligence in batch. $50.00 per call.

## Output

A JSON object keyed by input address, each containing the chain name, contract flag, Arkham label (e.g. 'Hot Wallet'), and full Arkham entity metadata including entity ID, name, type (e.g. 'cex'), and social/web links (Twitter, website, LinkedIn, Crunchbase). Also includes an isUserAddress flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Single blockchain network to filter all addresses to. Takes precedence over 'chains'. If omitted, auto-detects per addr…"
  },
  "chains": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Networks to consider when auto-detecting each address's network, as a comma-separated value (e.g. 'ethereum,bsc'). Igno…"
  },
  "addresses": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Array of blockchain addresses to query (max 1000). Supports EVM, Solana, Bitcoin, Tron, and other address formats."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "addresses": {
   "0x28C6c06298d514Db089934071355E5743bf21d60": {
    "chain": "ethereum",
    "address": "0x28C6c06298d514Db089934071355E5743bf21d60",
    "contract": false,
    "arkhamLabel": {
     "name": "Hot Wallet",
     "address": "0x28C6c06298d514Db089934071355E5743bf21d60",
     "chainType": "evm"
    },
    "arkhamEntity": {
     "id": "binance",
     "name": "Binance",
     "note": "",
     "type": "cex",
     "service": null,
     "twitter": "https://twitter.com/binance",
     "website": "https://binance.com",
     "linkedin": "https://www.linkedin.com/company/binance",
     "crunchbase": "https://www.crunchbase.com/organization/binance"
    },
    "isUserAddress": false
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-address-batch-intelligence-99797863/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.arkm.com](https://www.zero.xyz/host/api.arkm.com/llms.txt)
