# Arkham Transfers API (x402)

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

Retrieves on-chain transfer history from Arkham Intelligence with support for address, entity, token, and time-range filters

## Facts

- Endpoint: POST https://arkm-x402.vercel.app/api/arkham/transfers
- Price: $20/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-transfers-api-x402-d3970ce2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z_fDENOZ0T-MakAY1BecX

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-transfers-api-x402-d3970ce2 -d '<json body>'
```

Example prompt: Pull all USDC transfers sent from wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 in the last 7 days using Arkham, and show me the top recipients by amount.

## When to prefer this

Choose this endpoint when you need structured, filtered on-chain transfer data enriched with Arkham's entity intelligence — especially useful for tracing fund flows, investigating specific wallets or named entities, or analyzing token-specific transfer history. Prefer it over raw blockchain RPC calls when you need entity-labeled data rather than anonymous addresses. Note the high per-call cost ($1000 USDC) makes it best suited for high-value investigative or compliance workflows.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported token symbol may return no results or an unrecognized token error
- Overly broad queries without filters may time out or return truncated results
- USDC payment failure ($1000/call) will block the request via x402 protocol
- Date range out of supported historical bounds may return empty results
- Unknown entity name returns no results if Arkham has no label for it

## How this service works

Get Arkham transfers with filters

## Output

Returns a list of on-chain transfer records matching the specified filters, each including sender and receiver addresses, entity labels (where Arkham has identified them), token type, transfer amount, transaction hash, block number, and timestamp.

## 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-transfers-api-x402-d3970ce2/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)
