Dexilon API Documentation
  • πŸ‘‹Getting Started
  • General Info
    • βš™οΈGeneral API information
      • Base URLs
      • HTTP Return Codes
      • Enum Definition
    • πŸ’»Clients
      • Dexilon Chain Client
    • 🚦Limits
      • REST API Rate limits
      • WS Stream Rate Limits
    • πŸ”Security
      • Registration Flow
      • Authentication Flow
      • Sending Dexilon Transactions
      • Private API Calls
        • Access Token
        • Refresh Access Token
      • Timing security
    • ⚠️Error Codes
      • REST API Error Codes
      • WS Stream Error Codes
    • πŸ”Audits
      • Bridge Audit
      • Smart-Contract Audit
  • Restful API
    • πŸ“ŠMarket Data Endpoints
      • Test Connectivity
      • Check Server Time
      • Exchange Information
      • Order Book
      • Recent Trades List
      • Kline/Candlestick Data
      • Symbol Data
      • Funding Rate History
      • Open Interest
      • Taker Buy/Sell Volume
      • Index Price History
      • Fee Tiers Structure
      • Fee Tiers Discount
      • Symbol Rules
      • Leverage Rules
    • βš’οΈAccount and Trades Endpoints
      • πŸ”’Account Information
      • πŸ”’Get User Address
      • πŸ”’Positions Information
      • πŸ”’Assets Information
      • πŸ”’Change Initial Leverage
      • πŸ”’Change Margin Type
      • πŸ”’Modify Isolated Position Margin
      • πŸ”’Create Withdrawal
      • πŸ”’Create market order
      • πŸ”’Create limit order
      • πŸ”’Cancel Order
      • πŸ”’Cancel All Orders
      • πŸ”’Query Order
      • πŸ”’Get Open Orders
      • πŸ”’Get Order History
      • πŸ”’Get Trade History
      • πŸ”’Get Transaction History
    • πŸ†Rewards Endpoints
      • Current Reward Round
      • Reward Distribution
      • Rewards Settings
      • Current Tournament
      • Tournament Members
      • πŸ”’User's Reward Distributions
      • πŸ”’User's Reward Round Profit
      • πŸ”’User's Tournament Rating
    • πŸ’ΈLiquidation Auctions Endpoints
      • Open Lots
      • Lot History
      • πŸ”’Place Bid
  • WebSocket Streams
    • πŸ“ˆMarket Data WS Streams
      • Working with Public Streams
      • Mark Price Stream
      • Mark Price Stream For All Markets
      • Kline/Candlestick Stream
      • Ticker Stream
      • Ticker Stream For All Markets
      • Partial Book Depth Stream
      • Book Ticker Stream
      • Trade Stream
      • Aggregate Trade Stream
      • Liquidation Trade Stream
      • Liquidation Auction Stream
    • πŸ‘₯User Data WS Stream
      • πŸ”’Working with Private Streams
      • πŸ”’Order Update Stream
      • πŸ”’Account Update Stream
      • πŸ”’L2 Account Update Stream
Powered by GitBook
On this page
  1. Restful API
  2. Rewards Endpoints

Current Reward Round

Get information of current reward round

GET https://api.staging.dexilon.io​/api​/v1​/rewards​/currentRound

Weight: 1

{
    "roundNumber": 1,
    "startedAt": 1678924800000,
    "distributedAt": 1680220800000,
    "totalRewardPoolSize": 51690.94935388,
    "totalReferralProgramPoolSize": 9538.37262377,
    "totalReferralProgramPoolSizePercentage": 18.45,
    "totalRobbinhoodPoolSize": 42152.57673011,
    "totalRobbinhoodPoolSizePercentage": 81.55
}
PreviousRewards EndpointsNextReward Distribution

Last updated 2 years ago

πŸ†