Market price streams

/market/market-price/:symbol?api_key=<your_api_key>

This websocket will feed notifications for

  • Latest market-price (Last trade price)

Query params

Name
Value

api_key

<your_api_key>

Stream Response

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

Last updated