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>"
}

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_test_...

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
string

Filter by strategy type.

Response

Ranked trader list

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