Full Order Books
ws://api.tdax.com/ws/full-order-book-{currency}-{market}
Parameters
| Name | Type | Description | Example | 
|---|---|---|---|
| currency | String | A currency symbol, such as 'BTC','BTG','ETH','OMG','KNC', etc. | 'XZC' | 
| market | String | A market symbol, following 'THB','BTC','ETH','USDT' | 'USDT' | 
Response
The API feed all buy and sell order on book.
Example
ws://api.tdax.com/ws/full-order-book-BTC-THB
{
    "Asks": [
        {
            "ID": 326327,
            "Price": 409689.01,
            "Qty": 0.01372848,
            "RemainQty": 0.01126829,
            "Side": 1,
            "Type": 0,
            "CreatedAt": "2018-01-22T14:42:40.312424Z"
        },
        {
            "ID": 326329,
            "Price": 425000.00,
            "Qty": 0.13846604,
            "RemainQty": 0.13846604,
            "Side": 1,
            "Type": 0,
            "CreatedAt": "2018-01-22T14:44:13.147643Z"
        }
    ...
    ],
    {
    "Asks": [
        {
            "ID": 326327,
            "Price": 409689.01,
            "Qty": 0.01372848,
            "RemainQty": 0.01126829,
            "Side": 1,
            "Type": 0,
            "CreatedAt": "2018-01-22T14:42:40.312424Z"
        },
        {
            "ID": 326329,
            "Price": 425000.00,
            "Qty": 0.13846604,
            "RemainQty": 0.13846604,
            "Side": 1,
            "Type": 0,
            "CreatedAt": "2018-01-22T14:44:13.147643Z"
        }
    ...
    ]
}