Get Exchange Information
There are two APIs in this method.
Get Coin’s Details
URL: https://exchange.bartertrade.io/api/v1/getcoins
Method: POST
Attributes: none
Body:
{
"api_key": "your api key"
}
Response:
{
"status": true,
"list": [
{
"minimum_withdrawal": 0.002,
"withdrawal_fee": 0.0005,
"trade_pairs": "ETH_BTC,XRP_BTC,BCH_BTC,LTC_BTC,BRT_BTC",
"deposite_status": true,
"withdrawal_status": true,
"coin": "BTC",
"coinname": "Bitcoin"
},
{
"minimum_withdrawal": 0.0001,
"withdrawal_fee": 0,
"trade_pairs": "XRP_BTC,XRP_ETH,XRP_BRT",
"deposite_status": true,
"withdrawal_status": true,
"coin": "XRP",
"coinname": "Ripple"
},
{
"minimum_withdrawal": 0.28,
"withdrawal_fee": 0.14,
"trade_pairs": "BRT_BTC,BRT_ETH,LTC_BRT,XRP_BRT,BCH_BRT",
"deposite_status": true,
"withdrawal_status": true,
"coin": "BRT",
"coinname": "Barter Trade"
},
{
"minimum_withdrawal": 1.8,
"withdrawal_fee": 0.9,
"trade_pairs": "BTC_USDT,BRT_USDT,LTC_USDT,XRP_USDT,BCH_USDT,ETH_USDT,TUSD_USDT",
"deposite_status": true,
"withdrawal_status": true,
"coin": "USDT",
"coinname": "Tether"
},
{
"minimum_withdrawal": 1.7,
"withdrawal_fee": 0.85,
"trade_pairs": "BTC_TUSD,ETH_TUSD,BRT_TUSD,LTC_TUSD,XRP_TUSD",
"deposite_status": true,
"withdrawal_status": true,
"coin": "TUSD",
"coinname": "TrueUSD"
}
]
}
Get Token Pair List
URL: https://exchange.bartertrade.io/api/v1/pairlist
Method: POST
Body:
{
"api_key": "your api key"
}
Response:
{
"status": true,
"list": [
{
"status": true,
"pair": "ETH_BTC",
"sort_order": 1
},
{
"status": true,
"pair": "XRP_BTC",
"sort_order": 2
},
{
"status": false,
"pair": "BCH_BTC",
"sort_order": 3
},
{
"status": true,
"pair": "LTC_BTC",
"sort_order": 4
},
{
"status": true,
"pair": "BRT_BTC",
"sort_order": 5
},
{
"status": true,
"pair": "BTC_TUSD",
"sort_order": 6
},
{
"status": true,
"pair": "BRT_ETH",
"sort_order": 7
},
{
"status": true,
"pair": "XRP_ETH",
"sort_order": 8
},
{
"status": false,
"pair": "BCH_ETH",
"sort_order": 9
},
{
"status": true,
"pair": "LTC_ETH",
"sort_order": 10
},
{
"status": true,
"pair": "ETH_TUSD",
"sort_order": 11
},
{
"status": true,
"pair": "LTC_BRT",
"sort_order": 12
},
{
"status": true,
"pair": "XRP_BRT",
"sort_order": 13
},
{
"status": false,
"pair": "BCH_BRT",
"sort_order": 14
},
{
"status": true,
"pair": "BRT_TUSD",
"sort_order": 15
},
{
"status": false,
"pair": "BCH_TUSD",
"sort_order": 16
},
{
"status": true,
"pair": "LTC_TUSD",
"sort_order": 17
},
{
"status": true,
"pair": "XRP_TUSD",
"sort_order": 18
},
{
"status": false,
"pair": "BCH_USDT",
"sort_order": 19
},
{
"status": true,
"pair": "LTC_USDT",
"sort_order": 20
},
{
"status": true,
"pair": "XRP_USDT",
"sort_order": 21
},
{
"status": true,
"pair": "BTC_USDT",
"sort_order": 22
},
{
"status": true,
"pair": "ETH_USDT",
"sort_order": 23
},
{
"status": true,
"pair": "BRT_USDT",
"sort_order": 24
},
{
"status": true,
"pair": "TUSD_USDT",
"sort_order": 25
}
]
}
Last updated
Was this helpful?