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 Name | Field Type | Description |
---|---|---|
address | string | The address sent with the request. |
listing | ListingReward | null | See ListingReward object schema below. |
trading | TradingReward | null | See TradingReward object schema below. |
ListingReward object schema
Field Name | Field Type | Description |
---|---|---|
proof | string[] | The listing reward merkle proofs for the specific address. |
looksTotal | string | The total listing rewards in LOOKS. |
looks24h | string | The listing rewards in LOOKS for the past 24 hours. |
date | string | The date of the listing reward. |
TradingReward object schema
Field Name | Field Type | Description |
---|---|---|
proof | string[] | The trading reward merkle proofs for the specific address. |
looksTotal | string | The total trading rewards in LOOKS. |
looks24h | string | The trading rewards in LOOKS for the past 24 hours. |
volumeTotal | string | The total trading volume in WETH. |
volume24h | string | The trading volume in WETH for the past 24 hours. |
date | string | The date of the trading reward. |