# claw402 Open Interest vs Market Cap Ranking

> claw402 Open Interest vs Market Cap Ranking 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).

Returns a ranked list of crypto assets by open interest versus market cap ratio, with configurable sorting and pagination

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/rank/oi-vs-market-cap
- 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/claw402-open-interest-vs-market-cap-ranking-46fe78e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HBrsbciK2MHPLinhYGaRr

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 claw402-open-interest-vs-market-cap-ranking-46fe78e3
```

Example prompt: Show me the top 20 crypto assets ranked by open interest vs market cap ratio, sorted descending — I want to see which coins have the most leveraged futures activity relative to their size.

## When to prefer this

Use this endpoint when you need to identify which crypto assets have the highest or lowest open interest relative to their market capitalization — useful for spotting over-leveraged or under-leveraged markets. Prefer this over raw OI endpoints when the market-cap-normalized view is needed for cross-asset comparison. No API key or registration required — only a USDC wallet via x402 protocol.

## Known failure modes

- Empty data array returned if no results match query parameters
- Invalid sortBy or sortType values may return unfiltered or error response
- Payment failure (402) if USDC wallet has insufficient balance
- Rate limiting or timeout if upstream CoinAnk data is unavailable
- Non-zero code field in response body indicating upstream data error

## 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 ranked cryptocurrency entries with open interest and market cap metrics, ordered by the specified sort field and direction. Supports pagination via page and size parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "page": "1",
   "size": "10",
   "sortBy": "marketCap",
   "sortType": "desc"
  }
 }
}
```

## 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": {
      "page": {
       "type": "string"
      },
      "size": {
       "type": "string"
      },
      "sortBy": {
       "type": "string"
      },
      "sortType": {
       "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/claw402-open-interest-vs-market-cap-ranking-46fe78e3/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)
