Trading Rewards
Get Parameters of Each Epoch for All Epochs
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 Parameters of Each Epoch for All Epochs
Limit: 10 requests per 1 second per IP address
GET /v1/public/trading_rewards/epoch_info
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
200 - application/json
OK
The response is of type object
.
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
}
]
}
}