Trading Rewards
Get Broker Allocation 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 Broker Allocation 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/broker_allocation_history
GET
/
v1
/
public
/
trading_rewards
/
broker_allocation_history
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/broker_allocation_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"epoch_id": 2,
"rewards": [
{
"broker_id": "woofi_pro",
"epoch_token": "ORDER",
"pct_allocation": 0.2,
"rewards_allocation": 100
}
]
}
]
}
}
Response
200 - application/json
OK
Type of reward distributed for this epoch ($ORDER or es$ORDER)
The percentage rewards allocated to this broker in this epoch
The amount of rewards allocated to this broker in this epoch
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/broker_allocation_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"epoch_id": 2,
"rewards": [
{
"broker_id": "woofi_pro",
"epoch_token": "ORDER",
"pct_allocation": 0.2,
"rewards_allocation": 100
}
]
}
]
}
}