# claw402 RootData KOL Rankings API

> claw402 RootData KOL Rankings API 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).

Fetches a paginated list of crypto Key Opinion Leaders (KOLs) ranked by influence from the RootData dataset, paid per-call via USDC using the x402 protocol.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/rootdata/kol
- 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-rootdata-kol-rankings-api-e58d66ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YHCmk4UEck7n8a6Qw1aKP

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-rootdata-kol-rankings-api-e58d66ba
```

Example prompt: Can you pull me the top 20 crypto KOLs from RootData, ranked by influence — give me page 1 with a page size of 20 using the default rank type?

## When to prefer this

Use this endpoint when you need ranked crypto KOL data from RootData without registering for an API key, and you are able to pay per-call in USDC via the x402 protocol. Prefer this over traditional API key-gated services when you want frictionless, wallet-based access to influencer rankings.

## Known failure modes

- Payment not completed or insufficient USDC — 402 response requiring payment
- Invalid query parameter types for page, page_size, or rank_type — may return empty data or error
- Empty data array returned if no KOLs match the rank_type or page is out of bounds
- Service unavailable if vergex.trade backend is down

## 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 ranked KOL entries from RootData, such as influencer names, rankings, and associated metadata. Typical response: {code: 0, data: [...]}

## 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"
      },
      "page_size": {
       "type": "string"
      },
      "rank_type": {
       "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-rootdata-kol-rankings-api-e58d66ba/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)
