# Arkham Intelligence Batch Address Enrichment

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

Batch-enriches multiple blockchain wallet addresses with Arkham intelligence, returning entity labels, CEX/DEX attribution, contract flags, and tagged metadata for each address.

## Facts

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

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-intelligence-batch-address-enrichment-27f6cadd -d '<json body>'
```

Example prompt: Can you look up these Ethereum addresses — 0x28C6c06298d514Db089934071355E5743bf21d60, 0xabc123... — and tell me what entities own them, whether they're contracts, and any exchange or proof-of-reserves tags Arkham has on them?

## When to prefer this

Use this endpoint when you need to enrich a batch of blockchain addresses simultaneously with Arkham's proprietary entity intelligence — particularly when you need CEX attribution, entity names, contract classification, and wallet tags in a single call. Prefer this over single-address lookups when processing multiple addresses at once to save on per-call costs. Ideal for compliance workflows, on-chain investigation, or portfolio counterparty analysis where entity identity is needed at scale.

## Known failure modes

- Invalid or malformed Ethereum address returns no entry or error for that address
- Rate limiting or payment failure if x402 payment of $200 USDC is not properly attached
- Unrecognized address with no Arkham coverage returns minimal metadata (no entity or label)
- Batch too large may result in timeout or partial response
- Network errors from the Arkham API backend

## How this service works

Programmatic access to Arkham wallet intelligence and market data — via API keys and x402 pay-per-request.

## Output

A JSON object keyed by input address, where each value contains: chain metadata, a boolean contract flag, an Arkham label (wallet-level name), an Arkham entity object (org name, type like 'cex', social/website links), an isUserAddress flag, and an array of populated tags (e.g. proof-of-reserves) with rank and chain context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "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."
  },
  "includeTags": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Whether to include address tags in the response. Defaults to 'true'."
  },
  "includeClusters": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Whether to include cluster IDs in the response. Defaults to 'true'."
  },
  "includeEntityPredictions": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no k…"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "addresses": {
   "0x28C6c06298d514Db089934071355E5743bf21d60": {
    "ethereum": {
     "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,
     "populatedTags": [
      {
       "id": "proof-of-reserves",
       "rank": 20,
       "chain": "ethereum",
       "label": "Binance Proof of Reserves",
       "tagParams": "Binance",
       "disablePage": false,
       "excludeEntities": false
      }
     ]
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-intelligence-batch-address-enrichment-27f6cadd/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)
