Currencies
Get Currencies
GET https://api.tdax.com/public/getcurrencies
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 currencies.
Example
GET https://api.tdax.com/public/getcurrencies
[
{
"Currency": "BTC",
"CurrencyLong": "Bitcoin",
"TxFee": 0.002,
"Divider":100000000
},
{
"Currency": "BTG",
"CurrencyLong": "BitcoinGold",
"TxFee": 0.001,
"Divider":100000000
}
...
]