leaderboard

GET /api/Token/Smart_Leaderboard Description: Retrieves a ranked list of Smart wallets by ROI for a specific mint address, including buy, sell, and wallet metadata.Query Parameters

Parameter

Type

Required

Description

api_key

String

Yes

API key for authentication.

mint

String

Yes

Mint address to filter transactions.

Response

  • Status Code: 200 OK

  • Content-Type: application/json

  • Body:

[
  {
    "wallet": "string",
    "buy": number,
    "sell": number,
    "roi": number,
    "rank": integer,
    "wallet_data": {
      "name": "string",
      "wallet_address": "string",
      "telegram": "string",
      "twitter": "string",
      "image_url": "string"
    }
  },
  ...
]

Error Responses

  • 400 Bad Request:

  • 403 Forbidden:

Example Request

Example Response

Notes

  • Responses are cached for 5 seconds.

  • Sorted by ROI descending, with ranks assigned.

Last updated