Markets
List
GET https://api.tdax.com/public/getmarkets
Response
The API will return HTTP status 200 OK
upon successful listing, otherwise the status returned will be greater than 400
with the message indicating error.
The response body will be JSON array representing a list of all available markets.
Example
GET https://api.tdax.com/public/getmarkets
[
{
"MarketCurrency": "BTC",
"BaseCurrency": "THB",
"MarketCurrencyLong": "Bitcoin",
"BaseCurrencyLong": "ThaiBaht",
"MinTradeSize": 0.0005,
"MarketName": "BTC-THB"
},
{
"MarketCurrency": "BTG",
"BaseCurrency": "THB",
"MarketCurrencyLong": "BitcoinGold",
"BaseCurrencyLong": "ThaiBaht",
"MinTradeSize": 0.0005,
"MarketName": "BTG-THB"
},
{
"MarketCurrency": "ETH",
"BaseCurrency": "THB",
"MarketCurrencyLong": "Ethereum",
"BaseCurrencyLong": "ThaiBaht",
"MinTradeSize": 0.005,
"MarketName": "ETH-THB"
}
]