Ticker
GET https://api.tdax.com/public/getmarketsummaries?market
Parameters
Name | Type | Description | Example |
---|---|---|---|
market | String | A pair symbol, such as 'BTC_THB', 'ETH_THB', 'ETH_BTC', etc. | 'BTC_THB' |
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 summaries of all markets or only specified market.
Example
GET https://api.tdax.com/public/getmarketsummaries?market=BTC_THB
[
{
"Ask":410000,
"BaseVolume":73.88295086,
"Bid":402000,
"High":448786,
"Last":407964,
"Low":401150,
"MarketName":"BTC_THB",
"OpenBuyOrders":29,
"OpenSellOrders":56,
"PercentChange":-3.5893120570153916,
"Volume":30859037.21
}
]