> For the complete documentation index, see [llms.txt](https://abcc-docs.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abcc-docs.gitbook.io/api/market-data/depth.md).

# Depth

## Get Depth

<mark style="color:blue;">`GET`</mark> `https://api.abcc.com/api/v1/exchange/depth`

This endpoint allows you to get free cakes.

#### Query Parameters

| Name         | Type   | Description                                |
| ------------ | ------ | ------------------------------------------ |
| limit        | string | depth limit range (1-1000), default is 300 |
| market\_code | string |                                            |

{% tabs %}
{% tab title="200 Data successfully retrieved." %}

```
{
	"timestamp": 1633514240,
	"asks": [
		["50641.67", "0.20367"],
		["50637.75", "0.20345"],
		["50637.29", "1.260729"],
		["50633.27", "0.09879"],
		["50632.97", "0.20762"],
		["50632.54", "0.28449"],
		["50632.53", "0.24149"],
		["50630.9", "0.25453"],
		["50630.64", "1.55839"],
		["50628.95", "1.258724"]
	],
	"bids": [
		["50590.5", "0.22163"],
		["50586.15", "0.0818"],
		["50585.9", "0.2359"],
		["50585.89", "0.079"],
		["50583.39", "0.0305"],
		["50581.11", "0.05154"],
		["50579.97", "0.235"],
		["50579.52", "0.079"],
		["50577.91", "0.05"],
		["50571.36", "0.03952"]
	]
}
```

{% endtab %}
{% endtabs %}
