Not getting any data while sending subscribe request for options through 'WebSocket Market Streams'

I need to get live feed of options contracts, Sending Subscribe Request as per Options API but not getting any market data update.
I checked successful subscription using LIST_SUBSCRIPTIONS request.

Hi @Atul_Jain,

Could you please share your full code on how you’re subscribing to those streams?

Thanks for replying :slight_smile:
This is the request that I tried to send

{“method”: “SUBSCRIBE”, “params”: [“btc-250620-105500-c@depth”,“btc-250620-103000-c@depth”], “id”: 1}

Hi @Atul_Jain,

Are you using the correct Options WS Streams URL to subscribe to (wss://nbstream.binance.com/eoptions/)? Also, symbols for streams must be uppercase for Options and not lowercase.

So in your case it should be:

{“method”: “SUBSCRIBE”, “params”: [“BTC-250620-105500-C@depth”,“BTC-250620-103000-C@depth”], “id”: 1}

Yes I used this url, and tried to request both with uppercase and lowercase symbol names