Datasets to power the Market Depth chart.
Both bids and asks are lists of 2-item tuples: [price, volume]

Additionally there are aggregate values provided for both sides of the book
and both quote and base currencies (in that order) under the totals key:

totals = [
[amount of quote currency in bids, amount of base currency in bids],
[amount of quote currency in asks, amount of base currency in asks],
]

A nice article explaining how the Depth Chart works:
https://hackernoon.com/depth-chart-and-its-significance-in-trading-bdbfbbd23d33

GET /api/public/market/btc-aud/depth/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Cache-Control: public, s-maxage=1
Content-Type: application/json
Vary: Accept

{
    "bids": [
        [
            "1.2",
            "367.89566303"
        ],
        [
            "1.5",
            "104.26419293"
        ],
        [
            "4.28",
            "28.86008653"
        ],
        [
            "35",
            "8.66444243"
        ],
        [
            "95",
            "3.43244934"
        ],
        [
            "180",
            "1.66662814"
        ]
    ],
    "asks": [],
    "totals": [
        [
            "1166.77",
            "367.89566303"
        ],
        [
            0,
            0
        ]
    ]
}