# Arkham Entity Intelligence Summary

> Arkham Entity Intelligence Summary is a paid API for AI agents from api.arkm.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Returns a comprehensive wallet intelligence summary for a named blockchain entity, including balance, volume, transaction history, and address count.

## Facts

- Endpoint: POST https://api.arkm.com/x402/intelligence/entity-summary
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-entity-intelligence-summary-7069c88b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OduRGRkt-367_q06vAuyy

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-entity-intelligence-summary-7069c88b -d '<json body>'
```

Example prompt: Pull the Arkham entity summary for Binance — I want to see their total on-chain balance, cumulative volume, number of addresses, and when their first and last transactions were.

## When to prefer this

Choose this endpoint when you need a quick aggregate snapshot of a known named blockchain entity (exchange, fund, protocol, whale) — covering balance, volume, address count, and activity timestamps — without needing individual transaction-level detail. Ideal for due diligence, counterparty research, or competitive analysis where the entity is already labeled in Arkham's intelligence database. Prefer this over raw blockchain explorers when you need enriched, entity-level aggregation rather than raw address data.

## Known failure modes

- Unknown or unrecognized entity ID returns an error or empty result
- Payment failure due to insufficient USDC balance causes request rejection
- Malformed entity ID string results in a 400 bad request
- Rate limiting or quota exceeded returns a 429 error
- Entity exists but has no indexed data returns zeroed fields

## How this service works

Get Arkham summary statistics for an entity. $0.20 per call.

## Output

Returns a JSON object with the entity's aggregate on-chain metrics: total balance in USD, cumulative transaction volume in USD, total number of controlled addresses, timestamp of first transaction, and timestamp of most recent transaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "entity": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The entity ID to retrieve summary statistics for."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lastTx": "2026-07-20T23:59:59Z",
  "firstTx": "2017-06-19T06:17:43Z",
  "entityId": "binance",
  "volumeUsd": 49162486380910.36,
  "balanceUsd": 239832754572.0912,
  "numAddresses": 64762679
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-entity-intelligence-summary-7069c88b/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)
