Skip to main content
GET
/
market
/
leaderboard
Get app leaderboard
curl --request GET \
  --url https://app.elata.bio/api/market/leaderboard \
  --header 'Authorization: Bearer <token>'
{
  "metric": "<string>",
  "rows": [
    {
      "rank": 123,
      "tokenAddress": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "value": 123
    }
  ]
}
Status: proposed. This endpoint is designed here but not yet implemented on app.elata.bio/api.

Authorizations

Authorization
string
header
required

SIWE-issued JWT, scoped to a wallet address. Obtain via Sign-In With Ethereum (EIP-4361) against app.elata.bio. Required for personalized Portfolio and Rewards endpoints. The sub claim is the wallet address; a request whose path {address} does not match the sub is rejected.

Query Parameters

metric
enum<string>
default:volume24h
Available options:
volume24h,
marketCap,
holderGrowth24h
limit
integer
default:25
Required range: 1 <= x <= 100

Response

200 - application/json

Leaderboard rows.

metric
string
rows
object[]