Skip to main content
GET
/
api
/
v1
/
leaderboard
Get trader leaderboard
curl --request GET \
  --url https://api.0xinsider.com/api/v1/leaderboard \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "data": [
    {
      "id": "<string>",
      "address": "<string>",
      "platform": "<string>",
      "username": "<string>",
      "grade": "<string>",
      "score": 123,
      "pnl": 123,
      "volume": 123,
      "markets_traded": 123,
      "win_rate": 123,
      "strategy_type": "<string>",
      "last_active": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "meta": {
    "request_id": "<string>",
    "cached": true,
    "cache_age_s": 123
  },
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xinsider.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_live_...

Headers

If-None-Match
string

Conditional GET validator from a previous ETag. Matching values return 304 Not Modified with an empty body.

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
cursor
string

Pagination cursor (score_address format).

category
string

Filter by category slug.

strategy
enum<string>

Filter by ML-detected strategy type. Values come from backend/src/trader_analysis/classification/decision_tree.rs and are matched exactly against trader_classifications.primary_type. Unknown values currently match zero rows; the handler does not return HTTP 400.

Available options:
accumulator,
algo_trader,
arbitrageur,
directional,
event_driven,
market_maker,
momentum,
scalper,
speculator,
swing_trader

Response

Ranked trader list

object
string
required
Allowed value: "list"
data
object[]
required
has_more
boolean
required
meta
object
required
next_cursor
string | null