Trading Rewards
Get Wallet Trading Rewards History
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- GETGet Parameters of Each Epoch for All Epochs
- GETGet Epochs Data
- GETGet Broker Allocation History
- GETGet Wallet Trading Rewards History
- GETGet Account Trading Rewards History
- GETGet Current Epoch Estimate
- GETGet Current Epoch Estimate by Broker
- GETGet the Status of Trading Rewards Programme
- GETGet Symbol Rewards Category
- GET
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
Market Data API
- TradingView
- Funding Rates
- Market Info
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Trading Rewards
Get Wallet Trading Rewards History
Limit: 10 requests per 1 second per IP address
Return each epoch from Epoch 1 to last completed epoch.
GET /v1/public/trading_rewards/wallet_rewards_history
GET
/
v1
/
public
/
trading_rewards
/
wallet_rewards_history
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/wallet_rewards_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"wallet_lifetime_trading_rewards_order": 3378176.44849794,
"wallet_lifetime_trading_rewards_escrow": 0,
"rows": [
{
"epoch_id": 2,
"wallet_epoch_avg_staked": 0,
"max_reward_amount": 200000,
"epoch_token": "ORDER",
"reward_status": "Pending",
"r_wallet": 199712.92309234
}
]
}
}
Response
200 - application/json
OK
Sum of all confirmed $ORDER trading rewards on the wallet level
Sum of all confirmed es$ORDER trading rewards on wallet level
The epoch average staked balance used to calculate trading rewards
The maximum rewards distributable in this epoch
Type of reward distributed for this epoch ($ORDER or es$ORDER)
Pending
= During the waiting period after the epoch has endedConfirmed
= When the epoch rewards have been finalized and ready for users to claim
The amount of rewards distributed to this wallet in this epoch
Note: This value can be updated when reward_status == pending.
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/wallet_rewards_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"wallet_lifetime_trading_rewards_order": 3378176.44849794,
"wallet_lifetime_trading_rewards_escrow": 0,
"rows": [
{
"epoch_id": 2,
"wallet_epoch_avg_staked": 0,
"max_reward_amount": 200000,
"epoch_token": "ORDER",
"reward_status": "Pending",
"r_wallet": 199712.92309234
}
]
}
}