> 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-price-streams.md).

# Market price streams

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

## This websocket will feed notifications for

* Latest market-price (Last trade price)

**Query params**

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

**Stream Response**

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

```json
// exmaple response for market price
{
  type: "Market",
  sub_type: "market_price",
  price: 0.75
}


```

{% endtab %}
{% endtabs %}
