> For the complete documentation index, see [llms.txt](https://docs.deltadefi.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.deltadefi.io/start-trading/developers/websocket-endpoints/market-depth-streams.md).

# Market depth streams

`/market/depth/:symbol?api_key=<your_api_key>`&#x20;

## This websocket will feed notifications for

* newly created orders that exists on the order book

**Query params**

| Name     | Value             |
| -------- | ----------------- |
| api\_key | \<your\_api\_key> |

**Stream Response**

{% tabs %}
{% tab title="market price" %}

```json
{
  "timestamp": 1755747950587,
  "bids": [
    {
      "price": 0.195,
      "quantity": 30
    }
  ],
  "asks": [
    {
      "price": 0.3495,
      "quantity": 50.65
    }
  ]
}


```

{% endtab %}
{% endtabs %}
