LogoLogo
  • πŸ‘‹Introduction
  • Get Started
  • Sonic rGEMs Rewards Program
  • Chart Trader
  • Index Price
  • Vaults
    • RabbitX Liquidity Pool Vault
  • Funding Rate
  • Deposit / Withdrawal
  • Fiat Deposits
  • Binance Direct Deposit
  • Profit / Loss Calculation
  • Margin Calculation
  • Market Slippage Protection
  • Liquidations
  • RabbitX Quantower
  • Fees
    • API Fees
  • Frequently Asked Questions
  • Token
    • Explore $RBX
    • Contract Details
  • API Documentation
    • Introduction
    • Rate Limits
    • Generate Your API Keys
      • Signing with API Key
    • Public Endpoints
      • Market Info
      • Trades
      • Orderbook
      • Funding Rate
      • Candles
    • Private Endpoints
      • Account Operations
      • Authentication
      • Orders
      • Fills
      • Positions
      • Profile
      • Balance History
      • Deadman Switch
    • Websocket
      • Trades
      • Orderbook
      • Market Info
      • Account
    • Responses Data Structure
  • Twitter
  • Discord
  • Audit
  • Bug Bounty
  • Bug Bounty Postmortem Report
  • Terms of Use
Powered by GitBook
On this page
  • General Info
  • Reference implementation
  • Rate Limit
  1. API Documentation

Introduction

PreviousContract DetailsNextRate Limits

Last updated 2 months ago

By using any API provided by RabbitX, you agree to its Terms of Use and Privacy Policy. If you do not agree to the foregoing, then do not use any such API.

All documentation herein is provided β€‹β€œAS IS”. RabbitX makes no other warranties, express or implied, and hereby disclaims all implied warranties, including any warranty of merchantability and warranty of fitness for a particular purpose.

General Info

Mainnet endpoints

// REST
https://api.rabbitx.com

// Alternative REST
https://api.prod.rabbitx.io

// Websocket
wss://api.prod.rabbitx.io/ws

Testnet endpoints

// REST
https://api.testnet.rabbitx.io
// Websocket
wss://api.testnet.rabbitx.io/ws
  • All endpoints return either a JSON object or an array.

  • All private endpoints require .

Reference implementation

Rate Limit

There is a rate limit of 20 orders/sec per account. Rate limits will return a 429 error code.

Python:

Examples:

authentication
https://github.com/rabbitx-io/rabbitx-python-client
https://github.com/rabbitx-io/rabbitx-python-client/tree/main/examples