# CoinAnk Open Interest by Exchange

> CoinAnk Open Interest by Exchange is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Retrieves cryptocurrency open interest data broken down by exchange for a given base coin

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/oi/by-exchange
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-open-interest-by-exchange-878c0606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SLPchVlDcjyWihSbUu1ai

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 coinank-open-interest-by-exchange-878c0606
```

Example prompt: Show me the open interest breakdown by exchange for BTC right now — I want to see which exchanges are holding the most futures positions.

## When to prefer this

Use this endpoint when you need to see how open interest in a specific cryptocurrency is distributed across multiple exchanges simultaneously, e.g. for identifying where futures positioning is concentrated. Prefer this over generic price APIs when the specific insight needed is derivatives/OI data rather than spot prices or volume.

## Known failure modes

- Empty data array returned if baseCoin is not recognized or has no open interest data
- Non-zero code field indicating upstream CoinAnk API error
- Payment failure via x402 if wallet has insufficient USDC balance
- Malformed or missing baseCoin parameter may return empty or error response
- Rate limiting or gateway timeout from claw402 proxy layer

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a code field (0 = success) and a data array containing open interest figures segmented by exchange for the requested base coin, allowing comparison of OI levels across venues like Binance, OKX, Bybit, etc.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "baseCoin": "BTC"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "baseCoin": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinank-open-interest-by-exchange-878c0606/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
