Get rewards stats

The GET /rewards/all endpoint data field returns a Reward object matching the filters provided with the request, or null if no events match the filters provided.

Get rewards stats successful response schema:

{
  "success": true,
  "message": null,
  "data": Reward | null
}

Reward object schema:

Field NameField TypeDescription
addressstringThe address sent with the request.
listingListingReward | nullSee ListingReward object schema below.
tradingTradingReward | nullSee TradingReward object schema below.

ListingReward object schema

Field NameField TypeDescription
proofstring[]The listing reward merkle proofs for the specific address.
looksTotalstringThe total listing rewards in LOOKS.
looks24hstringThe listing rewards in LOOKS for the past 24 hours.
datestringThe date of the listing reward.

TradingReward object schema

Field NameField TypeDescription
proofstring[]The trading reward merkle proofs for the specific address.
looksTotalstringThe total trading rewards in LOOKS.
looks24hstringThe trading rewards in LOOKS for the past 24 hours.
volumeTotalstringThe total trading volume in WETH.
volume24hstringThe trading volume in WETH for the past 24 hours.
datestringThe date of the trading reward.