Filter by Wallet Addresses
Track orders from specific wallet addresses or use a wildcard to receive all trades.Specific Wallet Addresses:{
"action": "subscribe",
"platform": "polymarket",
"version": 1,
"type": "orders",
"filters": {
"users": [
"0x6031b6eed1c97e853c6e0f03ad3ce3529351f96d",
"0x7c3db723f1d4d8cb9c550095203b686cb11e5c6b"
]
}
}
You’ll receive order events when any of the specified wallet addresses execute trades.Wildcard - All Trades:The wildcard option ("*") is only available on Dev tier and above due to high egress costs. Free tier users cannot use this feature.
To receive all trades across Polymarket, use a wildcard:{
"action": "subscribe",
"platform": "polymarket",
"version": 1,
"type": "orders",
"filters": {
"users": ["*"]
}
}