API

API


  1. Trade Pairs (GET)
    • Return all pairs available in the site
    • https://bitrota.com/api/available_pairs
    • Response Example
      {
        "status": "1",
        "message": "Success",
        "combinations": ["EER_TRY","GNC_TRY","XMD_ETH","XMD_BTC","XMD_TRY","ETH_TRY","BTC_ETH","BTC_TRY"]
      }
  2. Tickers (GET)
    • Returns the latest ticker indicators for all available pairs
    • https://bitrota.com/api/tickers
    • Response Example
      {
        "status": "1",
        "message": "Success",
        "combinations": {
          "XMD_ETH": {
            "pair": "XMD_ETH",
            "last": "0.00011355",
            "lowestAsk": "0.0001268",
            "highestBid": "0.00011355",
            "percentChange": "11.32",
            "base24hrVolume": "185567.51500098",
            "quote24hrVolume": "21.61545699",
            "low24hr": "0.00011351",
            "high24hr": "0.0001264"
          },
          "XMD_TRY": {
            "pair": "XMD_TRY",
            "last": "0.18",
            "lowestAsk": "0.19",
            "highestBid": "0.18",
            "percentChange": "5.56",
            "base24hrVolume": "4306832.09812532",
            "quote24hrVolume": "826459.52",
            "low24hr": "0.18",
            "high24hr": "0.2"
          }
        }
      }
  3. Ticker (GET)
  4. 24 Hr Volume (GET)
    • Returns the latest ticker indicators for requested pairx
    • https://bitrota.com/api/volume24
    • Response Example
      {
        "status": "1",
        "message": "Success",
        "combinations": {
          "XMD_BTC": {
            "XMD": "0.00000000",
            "BTC": "0.00000000"
          },
          "XMD_TRY": {
            "XMD": "4306832.09812532",
            "TRY": "826459.52"
          }
        }
      }
  5. Order Book (GET)
  6. Trade History (GET)