> For the complete documentation index, see [llms.txt](https://fixt.gitbook.io/apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fixt.gitbook.io/apis/reference/derivative/orderbook.md).

# Orderbook

## Orderbook

<mark style="color:green;">`GET`</mark> <https://fapi.fixt.io/api/v0/market/depth?symbol=BTC_USDT&level=10>

**Parameters**

| Name     |                        |
| -------- | ---------------------- |
| `symbol` | `String  e.g BTC_USDT` |
| `level`  | `Integer  e.g 50`      |

**Response Body**

| Name        | Type    | Description                                                                      |
| ----------- | ------- | -------------------------------------------------------------------------------- |
| `ticker_id` | string  | Identifier of a ticker with delimiter to separate base/quote, eg. BTC-USDT       |
| `timestamp` | Integer | Unix timestamp in milliseconds for when the last updated time occurred.          |
| `bids`      | decimal | An array containing 2 elements. The offer price and quantity fyor each bid order |
| `asks`      | decimal | An array containing 2 elements. The ask price and quantity for each ask order    |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "status":"true",
    "msg":"success",
    "result": {
            "ticker_id": "BTC_USDT",
            "timestamp": 1713382097818,
            "bids": [[61028.1,2.931],[61027.9,0.863],[],[]...],
            "asks": [[61028.1,2.931],[61027.9,0.863],[],[]...],
        }
}
```

{% endtab %}
{% endtabs %}
