# CoinAnk Open Interest vs Market Cap Historical Data

> CoinAnk Open Interest vs Market Cap Historical Data is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Retrieves historical data comparing cryptocurrency open interest to market cap over time, proxied through the claw402 x402 payment gateway

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/oi/vs-market-cap-hist
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-open-interest-vs-market-cap-historical-data-82753a0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qjdxWJuIadMIhJAJFObS8

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-vs-market-cap-historical-data-82753a0c
```

Example prompt: Can you pull the historical open interest vs market cap data for BTC using a 1-day interval, going back 30 data points ending now?

## When to prefer this

Use this endpoint when you need historical time-series data comparing open interest to market cap for a specific cryptocurrency, particularly for derivatives market analysis and sentiment gauging. Prefer this over spot-only data sources when derivatives positioning context is needed.

## Known failure modes

- Empty data array returned if the coin symbol is unsupported or has no historical OI data
- Invalid interval value may return an error or empty result
- Payment failure if wallet has insufficient USDC balance
- Request fails if required parameters (type, method) are malformed
- endTime in wrong format may return no results

## How this service works

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

## Output

Returns a JSON object with a status code and a data array containing historical records of open interest compared to market cap for the specified cryptocurrency, interval, and time range.

## 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": {
      "size": {
       "type": "string"
      },
      "endTime": {
       "type": "string"
      },
      "baseCoin": {
       "type": "string"
      },
      "interval": {
       "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-vs-market-cap-historical-data-82753a0c/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)
