# CoinAnk Hyper Top Positions

> CoinAnk Hyper Top Positions is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Retrieves a ranked list of top positions (largest open positions) on Coinank's Hyper perpetuals market, with pagination and sorting support.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/hyper/top-position
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-hyper-top-positions-28b70797
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WktZNFKgm0ToTKOnnqiAo

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-hyper-top-positions-28b70797
```

Example prompt: Show me the top 20 largest open positions on CoinAnk Hyper perpetuals, sorted by position size in descending order — I want to see who's carrying the biggest bets right now.

## When to prefer this

Use this endpoint when you need a paginated leaderboard of the largest open positions on CoinAnk's Hyper perpetuals market, especially when you want to analyze whale activity, monitor large traders, or rank positions by various metrics without needing an API key — just a crypto wallet.

## Known failure modes

- Empty data array returned if no positions are found or market is inactive
- Invalid sortBy or sortType values may return unsorted or error responses
- Pagination out of bounds returns empty data array
- Payment failure (402) if USDC wallet balance is insufficient
- Network timeout if upstream CoinAnk data source is unavailable

## 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 top position records from the CoinAnk Hyper perpetuals market, ranked according to the requested sort field and direction, paginated by page and size parameters.

## Example request

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

## 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/coinank-hyper-top-positions-28b70797/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)
