# Arkham Exchange Tokens List

> Arkham Exchange Tokens List 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-14).

Returns the list of available spot and perpetual tokens tradable on the Arkham exchange, with their pricing identifiers.

## Facts

- Endpoint: POST https://api.arkm.com/x402/token/arkham-exchange-tokens
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-exchange-tokens-list-f6e606de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__8Bs_RfmiZBxQgapMBpuU

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-exchange-tokens-list-f6e606de -d '<json body>'
```

Example prompt: Can you pull up the full list of tokens available to trade on Arkham exchange — both spot and perpetual — so I can see which markets are currently supported?

## When to prefer this

Use this endpoint when you need to discover which tokens are tradable on Arkham exchange before placing orders, building a UI, or resolving a token name to its pricingID for use in other Arkham API calls. Prefer this over scraping the Arkham web interface or hardcoding token lists, as it reflects the live canonical set of supported markets.

## Known failure modes

- Payment failure: x402 USDC payment not included or insufficient — endpoint returns 402 Payment Required
- Authentication error: missing or invalid API key — returns 401 Unauthorized
- Service unavailable: Arkham API downtime — returns 5xx error
- Empty lists: exchange has no tokens listed at query time — returns empty arrays
- Network timeout: slow response if Arkham backend is under load

## How this service works

Get Arkham Exchange tokens. $0.20 per call.

## Output

A JSON object containing two arrays: 'perpTokens' (perpetual futures tokens) and 'spotTokens' (spot market tokens), each element including an 'identifier' object with a 'pricingID' string (e.g. 'bitcoin', 'ethereum', 'solana') used to reference the token in other Arkham API calls.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "perpTokens": [
   {
    "identifier": {
     "pricingID": "ethereum"
    }
   },
   {
    "identifier": {
     "pricingID": "solana"
    }
   }
  ],
  "spotTokens": [
   {
    "identifier": {
     "pricingID": "bitcoin"
    }
   },
   {
    "identifier": {
     "pricingID": "ethereum"
    }
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-exchange-tokens-list-f6e606de/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)
