{ "jsonrpc": "2.0", "id": 1, "error": { "description": "Wildcard subscription is not allowed for instruments. Please subscribe with each instrument name explicitly.", "code": 400 }}
Cause: Attempting to use "instrument": "ALL" or similar wildcard patterns.Solution:
Copy
Ask AI
// ❌ This will fail{ "params": ["market:spot:trades", {"exchange": "bitget"}]}// ✅ Use explicit instrument subscriptions{ "params": ["market:spot:trades", {"exchange": "bitget", "pair": "btc_usdt"}]}
{ "jsonrpc": "2.0", "id": 1, "error": { "description": "Max subscription limit reached on this connection. Please open additional connections to subscribe to more instruments.", "code": 400 }}