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
Get Parameters of Each Epoch for All Epochs
Limit: 10 requests per 1 second per IP address
GET /v1/public/trading_rewards/epoch_info
curl --request GET \
--url https://api.orderly.org/v1/public/trading_rewards/epoch_info
{
"success": true,
"timestamp": 1702989203989,
"data": {
"current_epoch": 23,
"rows": [
{
"epoch_id": 2,
"start_time": 1711411200000,
"end_time": 1711497600000,
"power_fees_paid_major": 0.8,
"power_fees_paid_alts": 0.8,
"power_staked_major": 0.2,
"power_staked_alts": 0.2,
"epoch_token": "ORDER",
"max_reward_amount": 200000,
"k_constant_major": 10,
"k_constant_alts": 10
}
]
}
}
Response
true
1702989203989
The current on-going epoch for trading rewards
23
2
epoch start timestamp
1711411200000
epoch end timestamp
1711497600000
The weight (power) of feesPaid for trader score calculation for major symbols
0.8
The weight (power) of feesPaid for trader score calculation for alts symbols
0.8
The weight (power) of stakedORDER for trader score calculation for major symbols
0.2
The weight (power) of stakedORDER for trader score calculation for alts symbols
0.2
Type of reward distributed for this epoch ($ORDER or es$ORDER)
"ORDER"
The maximum rewards distributable in this epoch
200000
The number used in the function for weight of stakedORDER for major symbols
10
The number used in the function for weight of stakedORDER for alts symbols
10
curl --request GET \
--url https://api.orderly.org/v1/public/trading_rewards/epoch_info
{
"success": true,
"timestamp": 1702989203989,
"data": {
"current_epoch": 23,
"rows": [
{
"epoch_id": 2,
"start_time": 1711411200000,
"end_time": 1711497600000,
"power_fees_paid_major": 0.8,
"power_fees_paid_alts": 0.8,
"power_staked_major": 0.2,
"power_staked_alts": 0.2,
"epoch_token": "ORDER",
"max_reward_amount": 200000,
"k_constant_major": 10,
"k_constant_alts": 10
}
]
}
}