# Arkham Intelligence Address Enriched Lookup

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

Returns enriched wallet intelligence for a blockchain address, including entity identification, labels, tags, and contract status via Arkham's on-chain analytics database.

## Facts

- Endpoint: POST https://api.arkm.com/x402/intelligence/address-enriched
- Price: $0.4/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-address-enriched-lookup-1468919d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UP1QNR1a9ulHygT7lQNoP

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-address-enriched-lookup-1468919d -d '<json body>'
```

Example prompt: Can you look up the Ethereum address 0x28C6c06298d514Db089934071355E5743bf21d60 on Arkham and tell me what entity owns it, whether it's a contract, and any labels or tags associated with it?

## When to prefer this

Choose this endpoint when you need Arkham's proprietary entity attribution and labeling for a specific blockchain address — particularly when you need to identify whether an address belongs to a known exchange (like Binance), DeFi protocol, or other labeled entity, and when Arkham's proof-of-reserves tags and social profile links are valuable. Prefer this over generic block explorers when entity intelligence and categorization matter, not just raw transaction data.

## Known failure modes

- Invalid or malformed address returns an error response
- Unsupported chain identifier results in a lookup failure
- Address not found in Arkham database returns empty entity/label fields
- Rate limiting or payment failure via x402 protocol returns 402 or 429
- Network timeout on Arkham API side

## How this service works

Get enriched Arkham intelligence for an address. $0.40 per call.

## Output

Returns a JSON object containing: the chain and address, a boolean indicating if it's a smart contract, an arkhamLabel with a human-readable name, an arkhamEntity object with entity ID, name, type (e.g. 'cex'), and social/web links, a flag for whether it's a user address, and an array of populatedTags with IDs, ranks, chain, label text, and display parameters.

## 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": "Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omit…"
  },
  "address": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The blockchain address to query."
  },
  "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": {
  "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-address-enriched-lookup-1468919d/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)
