Leaderboard

Fetching leaderboard data

Get all time total minted players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/minted/alltime/:session_id

Returns list of wallet addresses, their rewards and positions

Path Parameters

NameTypeDescription

session_id

integer

The game event ID.

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Get today's total minted players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/minted/today/:session_id

Returns list of wallet address, their rewards and options for today. Today by UTC timezone (GMT+0), London time.

Path Parameters

NameTypeDescription

session_id

integer

Game event id

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Get day's total minted players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/minted/day/:session_id/:date

Return list of winners for a specific day.

Path Parameters

NameTypeDescription

date

string

Date in format: yyyy-mm-dd

session_id

integer

Game event id

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Get all time total spent players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/spent/alltime/:session_id

List of players who spent most CWS during the game event

Path Parameters

NameTypeDescription

session_id

integer

Game event ID

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Get today's total spent players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/spent/today/:session_id

Path Parameters

NameTypeDescription

session_id

integer

Game event id

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Get day's total spent players

GET https://api-test.blocklords.io:81/nftrush/leaderboard/spent/day/s:ession_id/:date

Return list of players by spent CWS amount for specific date.

Path Parameters

NameTypeDescription

session_id

integer

Game event ID

date

string

Date in calendar in format: yyyy-mm-dd

[
   [
      "0x08302CF8648A961c607e3e7Bd7B7Ec3230c2A6c5",
      9
   ],
   [
      "0xC6EF8A96F20d50E347eD9a1C84142D02b1EFedc0",
      4
   ],
   ...
]

Last updated