# Arkham Intelligence Search API

> Arkham Intelligence Search API is a paid API for AI agents from arkm-x402.vercel.app, paid per call via x402, $6/call, status unknown (last checked 2026-09-13).

Search Arkham's blockchain intelligence database for addresses, entities, tokens, pools, and named labels

## Facts

- Endpoint: POST https://arkm-x402.vercel.app/api/arkham/search
- Price: $6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-intelligence-search-api-bfcd1ccc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WWM35TCcF68OCGPoK1fo5

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-search-api-bfcd1ccc -d '<json body>'
```

Example prompt: Search Arkham for the entity or address '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045' and tell me which named entity or label it belongs to.

## When to prefer this

Choose this endpoint when you need to resolve or identify blockchain addresses, entities, tokens, or pools using Arkham Intelligence's proprietary labeled dataset. It is especially useful for on-chain attribution — finding out who controls a wallet — or discovering all addresses associated with a named entity like an exchange or protocol. Prefer this over generic block explorers when entity-level labeling and intelligence context matters.

## Known failure modes

- Empty results if the address or entity name is not indexed in Arkham
- Payment failure if $6 USDC is not available or x402 payment protocol fails
- Malformed request if required body fields are missing or incorrectly formatted
- Rate limiting or access denial if the endpoint quota is exceeded

## How this service works

Search Arkham addresses, entities, tokens, pools, and names

## Output

Returns a list of matching results from Arkham's intelligence database, which may include blockchain addresses with entity labels, token metadata, liquidity pool details, and named wallet identifiers associated with the search query.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       },
       {
        "type": "array",
        "items": {
         "type": "string"
        }
       },
       {
        "type": "array",
        "items": {
         "type": "number"
        }
       },
       {
        "type": "array",
        "items": {
         "type": "boolean"
        }
       }
      ]
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-intelligence-search-api-bfcd1ccc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from arkm-x402.vercel.app](https://www.zero.xyz/host/arkm-x402.vercel.app/llms.txt)
