Hello Coinbase Team,
Could you please check the WebSocket messages from wss://ws-feed.exchange.coinbase.com
for SAND-USD product:
{
"type": "subscribe",
"product_ids": [
"SAND-USD"
],
"channels": ["ticker"]
}
I’m receiving only single message which contains only zeroes:
{
"type": "ticker",
"product_id": "SAND-USD",
"price": "0",
"open_24h": "0",
"volume_24h": "0",
"low_24h": "0",
"high_24h": "0",
"volume_30d": "0",
"best_bid": "0.000",
"best_ask": "0.000"
}
Similarly:
{
"type": "subscribe",
"product_ids": [
"SAND-USD"
],
"channels": ["full"]
}
returns only one message:
{
"type": "subscriptions",
"channels": [
{
"name": "full",
"product_ids": [
"SAND-USD"
]
}
]
}
I’m expecting the flow of messages with the current prices.
That same with REST results:
curl --request GET --url https://api.exchange.coinbase.com/products/SAND-USD/ticker --header 'Accept: application/json'
{"ask":"0","bid":"0","volume":"0","trade_id":null,"price":null,"size":null,"time":null}%
On https://www.coinbase.com/pl/price/the-sandbox i see that the SAND coin has considerable trading volume.
Best regards.
Przemek