Return all the Information about IndoEx
Return data example:
{"name":"IndoEx","description":"Indoex is a secure blockchain exchange mainly provides more than 200 kinds of digital currency assets trading and investment, buying and selling BTC, ETH, etc","location":"London","logo":"https://international.indoex.io/assets/images/logo.png","website":"https://international.indoex.io/","twitter":"https://twitter.com/Indoex_LTD","facebook":"https://www.facebook.com/Indoex.official/","telegram":"https://t.me/indoexofficial","linkedin":"https://www.linkedin.com/company/indoex/","capability":{"markets":true,"trades":true,"tradesSocket":false,"orders":true,"ordersSocket":false,"ordersSnapshot":false,"candles":true}}
Return all the Information about all Assets
https://api.indoex.io/assets/all
Return data example:
{"status":1,"message":"Success","result":{"BTC":{"unified_cryptoasset_id":"1","lastUpdateTimestamp":"2020-10-01T06:24:37.133Z","name":"BITCOIN","can_Withdraw":true,"can_Deposit":true,"min_Withdrawal":0.0013,"max_Withdrawal":0.15,"maker_Fee":0.0015,"taker_Fee":0.001},...]
Return all the Information about selected Asset
https://api.indoex.io/assets/BTC
Return data example:
{"status":1,"message":"Success","unified_cryptoasset_id":"1","lastUpdateTimestamp":"2020-10-01T06:25:10.026Z","name":"BITCOIN","can_Withdraw":true,"can_Deposit":true,"min_Withdrawal":0.0013,"max_Withdrawal":0.15,"maker_Fee":0.0015,"taker_Fee":0.001}
Return all the trading pairs supported by Indoex Market
https://api.indoex.io/getavailablepairs/
Return data example:
{"status":1,"message":"Success","combinations":["BTC_ETH","BTC_LTC","BTC_XRP","BTC_USDT","BTC_USDC","BTC_BSV",.....]}
Return all the available market references in IndoEx
https://api.indoex.io/markets/
Return data example:
{"status":1,"message":"Success","combinations":[{"id":"BTC_ETH","base":"BTC","quote":"ETH"},...]}
Return all the trade analytics in Indoex Market
https://api.indoex.io/getMarketDetails/
Return data example:
{"status":1,"message":"Success","marketdetails":[{"pair":"ETLT_ETH","last":"0.0138686900","lowsale":"0.0137037500","highsale":"0.0142435200","24hrhigh":"0.0142435200","name":"ETH","baseVolume":"293.5867793576","min_buy":"0.0001000000","min_sell":"0.0001000000","sellfee":"0.0015000000","buyfee":"0.0010000000","cmcid":"1027"},...]}
Return all the trade pairs with/without trade
https://api.indoex.io/getCompleteMarkets/
Return data example:
{"status":1,"message":"Success","marketdetails":[{"pair":"ETLT_ETH","last":0.01386869,"lowsale":0.01370375,"highsale":0.01424352,"24hrhigh":0.01424352,"name":"ETH","baseVolume":345.0197672543,"min_buy":0.0001,"min_sell":0.0001,"sellfee":0.0015,"buyfee":0.001,"cmcid":"1027"},....]}
Return all the trade analytics for selected combination in Indoex Market
https://api.indoex.io/getSelectedMarket/BTC_ETH
Return data example:
{"status":1,"message":"Success","marketdetails":[{"pair":"BTC_ETH","last":29.82619354,"lowsale":27.811004,"highsale":31.49152911,"24hrhigh":30.21829691,"name":"ETH","baseVolume":85799.2061359326,"min_buy":0.0001,"min_sell":0.0001,"sellfee":0.0015,"buyfee":0.001}]}
Return all the trade analytics for selected combination(JSON) in Indoex Market
https://api.indoex.io/ticker/BTC_ETH
Return data example:
{"status":1,"message":"Success","lastUpdateTimestamp":"2020-10-01T06:23:01.000Z","tradingPairs":"BTC_ETH","LastPrice":29.82619354,"lowestAsk":27.811004,"highestBid":31.49152911,"baseVolume24h":2490.9780569755367,"quoteVolume24h":74296.3936312455,"tradesEnabled":true}
Return all the available orders for selected Trade pair in Indoex
https://api.indoex.io/getOrderBook/BTC_ETH
Return data example:
"status":1,"message":"Success","orderbook":[{"orders_id":"0x8BC37F2A","vendorticker":"BTC","marketticker":"ETH","ordertype":"Sell Order","coins":"0.78217727","cost":"29.88927945"},....]}
Return all the available orders for selected trade pair separated with bid and ask
https://api.indoex.io/depth/BTC_ETH
Return data example:
{"status":1,"message":"Success","lastUpdateTimestamp":"2020-10-01T06:33:26.918Z","asks":[{"price":"29.81105712","quantity":"0.51304335"},{"price":"29.81174255","quantity":"0.57803531"},...]},"bids":[{"price":"29.80922095","quantity":"0.14685968"},....}]}
Return all the trades information for selected trade pair
https://api.indoex.io/getTradeBook/BTC_ETH
Return data example:
{"status":1,"message":"Success","orderbook":[{"id":"0x8BC50D36","type":"Sell Order","amount":"0.33311845","cost":"29.80738832","processedon":"2020-10-01T06:37:31.000Z"},...]}
Return all the trades information for selected trade pair(JSON)
https://api.indoex.io/trades/BTC_ETH
Return data example:
{"status":1,"message":"Success","orderbook":[{"tradeID":"0x8BC53549","type":"Sell Order","baseVolume":"0.47017077","price":"29.83392364","quoteVolume":"29.83392364","time":"2020-10-01T06:53:34.000Z","isBuyerMaker":false},....]}
Returns candlestick chart data for selected pairs supported by Indoex Market
https://api.indoex.io/getChartData/BTC_ETH
Return data example:
{"status":1,"message":"Success","analytics":[{"analytics_id":8612961,"x":"2020-10-01T06:55:00.000Z","high":29.83392364,"low":29.815057,"open":29.815057,"close":29.83392364,"volume":39.58709634064273},...]}
Error codes details from system
Error codes | Details |
---|---|
0 | Invalid request |
1 | Success |
2 | Invalid request |
3 | Invalid request |
4 | Too many attempts |
5 | Currency is not supported |
6,7 | Currency is not supported |
8 | Empty params |
9 | Internal error, please report to administrator |
10 | Invalid user |