Trading Rewards
Get Current Epoch Estimate
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 Current Epoch Estimate
Limit: 10 requests per 1 second per IP address
Get user’s estimated trading rewards during the current epoch
GET /v1/public/trading_rewards/current_epoch_estimate
GET
/
v1
/
public
/
trading_rewards
/
current_epoch_estimate
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/current_epoch_estimate
{
"success": true,
"timestamp": 1702989203989,
"data": {
"est_trading_volume": 120,
"est_avg_stake": 55,
"est_stake_boost": 2.228807384,
"est_r_wallet": 17.4236779074,
"rows": [
{
"broker_id": "woofi_pro",
"est_r_account": 13.4236779074
}
]
}
}
Query Parameters
Response
200 - application/json
OK
The estimated trading volume the user has traded for this ongoing epoch
The estimated average amount of the user’s wallet stake balance used to compute estimated rewards
The estimated stake boost used to compute estimated rewards
The estimated amount of trading rewards the user earn for the on-going epoch across all brokers
curl --request GET \
--url https://api-evm.orderly.org/v1/public/trading_rewards/current_epoch_estimate
{
"success": true,
"timestamp": 1702989203989,
"data": {
"est_trading_volume": 120,
"est_avg_stake": 55,
"est_stake_boost": 2.228807384,
"est_r_wallet": 17.4236779074,
"rows": [
{
"broker_id": "woofi_pro",
"est_r_account": 13.4236779074
}
]
}
}