# Arkham Portfolio Time-Series by Address

> Arkham Portfolio Time-Series by Address 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-15).

Returns time-series portfolio value and token balance data for a given blockchain wallet address across networks

## Facts

- Endpoint: POST https://api.arkm.com/x402/portfolio/time-series/address
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-portfolio-time-series-by-address-11186725
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pu7300dx_ukOtpnVAchiS

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-portfolio-time-series-by-address-11186725 -d '<json body>'
```

Example prompt: Pull the time-series portfolio history for Ethereum wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 from Arkham — I want to see how its holdings across Ethereum mainnet and Arbitrum changed over November 2024.

## When to prefer this

Use this endpoint when you need time-series historical portfolio data for a specific blockchain wallet address, including per-token balances and USD valuations across multiple chains. Prefer this over simple balance lookups when trend analysis, historical snapshots, or time-windowed portfolio performance is needed. Arkham is especially valuable when the wallet belongs to a known entity or institution indexed in Arkham's intelligence graph.

## Known failure modes

- Invalid or unrecognized wallet address returns empty or error response
- Insufficient USDC balance for x402 payment results in payment failure and no data returned
- Address with no on-chain history returns empty time-series object
- Unsupported network or chain parameter returns partial or null data
- Rate limiting or API key issues result in 401/429 errors

## How this service works

Get Arkham daily portfolio time series for an address token. $0.40 per call.

## Output

A JSON object keyed by ISO 8601 timestamps, each containing a breakdown by blockchain network and token: includes asset ID, token name, symbol, current price in USD, token balance, and total USD value. Covers multiple chains (e.g. Ethereum mainnet, Arbitrum One) in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chains": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns data across…"
  },
  "address": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The blockchain address to query time series data for."
  },
  "pricingId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The CoinGecko pricing ID of the token to track."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "2024-11-06T00:00:00Z": {
   "ethereum": {
    "ethereum": {
     "id": "ethereum",
     "usd": 182031320.5595918,
     "name": "Ethereum",
     "price": 2423.42,
     "symbol": "eth",
     "balance": 75113.401952444
    }
   },
   "arbitrum_one": {
    "ethereum": {
     "id": "ethereum",
     "usd": 382.8576735364209,
     "name": "Ethereum",
     "price": 2423.42,
     "symbol": "eth",
     "balance": 0.157982385858176
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-portfolio-time-series-by-address-11186725/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)
