If you are building or running bots on Polymarket, several platform changes in early-to-mid August 2026 directly affect signal generation, execution, and resolution logic.
Here is the practical summary of what matters right now.
1. TWAP Resolution for Crypto Up/Down Markets (Live since Aug 7)
Short-duration crypto markets no longer resolve on a single price snapshot.
They now use Chainlink-powered Time-Weighted Average Price (TWAP):
| Market Duration | TWAP Window |
|---|---|
| 5-minute markets | 30-second TWAP |
| 15-minute markets | 60-second TWAP |
| 4-hour markets | 60-second TWAP |
This applies to BTC, ETH, SOL, XRP, HYPE, BNB, DOGE and other crypto up/down contracts.
Why it matters:
- Last-second price wicks and expiry manipulation become much harder
- Opening price (price-to-beat) and settlement both draw from the TWAP feed
- Any bot still using last-tick oracles or single-price close logic is now misaligned with actual resolution
Developer access:
- Chainlink TWAP mainnet feeds are available
- Polymarket RTDS (Real-Time Data Streaming) WebSocket delivers the same values without separate Chainlink credentials
- Supported in both TypeScript (
@polymarket/client) and Python (polymarket-client) SDKs
Bots need updates in three places: fair-value calculations, signal generation, and resolution handling.
2. Volume-Based CLOB Rate Limits (Enforced ~Aug 6)
Order and cancel requests now use per-signer token buckets tiered by trailing 30-day trading volume.
- Higher volume → higher base rates and burst capacity
- Separate from IP-based Cloudflare limits
- Monitor
Poly-RateLimit-WarningandRetry-Afterheaders
Practical advice:
- Batch requests where possible
- Scale real volume if you need higher limits for market-making or high-frequency strategies
- Do not assume old rate assumptions still hold
3. Other Recent Platform Updates
-
Bridge API
/status/{address}becomes paginated (default 50, cursor-based) starting August 12, 2026 - Unified DeFi API gateway for orders, balances, notifications, and builder keys
- Combos: Collateral Return is live (better capital efficiency for multi-outcome market makers)
- Perps enhancements: TPSL, liquidation lines, portfolio history, dead-man’s switch / auto-cancel in SDKs
- CLOB V2 is the only production standard (V1 is fully deprecated). Collateral is pUSD
- SDK improvements: better pagination, GTC expiration handling, 503 retries, native TWAP subscriptions
Current Developer Stack
Official docs: docs.polymarket.com
Key surfaces:
| Surface | Purpose | Endpoint / URL |
|---|---|---|
| CLOB | Order books, placement, cancellation | clob.polymarket.com + WebSocket |
| Gamma API | Market & event discovery | — |
| Data API | Positions, activity, history | — |
| RTDS | Low-latency crypto prices + TWAP | wss://ws-live-data.polymarket.com |
Recommended SDKs:
-
Python:
polymarket-client(async/sync + realtime subscriptions) -
TypeScript:
@polymarket/client
Older clob-client / V1 packages should be considered obsolete.
Practical Notes for Bot Builders
Still high-volume areas:
- Politics
- Sports
- Short-duration crypto (now TWAP-protected)
Strategy impact:
- Pure expiry manipulation is largely dead
- Market making benefits from liquidity rewards and collateral return
- Signal-based and arb bots must become TWAP-aware
- Copy-trading and sniper bots need faster, cleaner data feeds
Operational checklist:
- Prefer WebSockets over heavy REST polling
- Respect volume-based rate tiers
- Use EIP-712 signing + private RPCs
- Keep keys secure and separate (builder keys vs trading keys)
- Test resolution logic against live TWAP feeds, not historical snapshots
Bottom Line
The two biggest changes for bot developers in August 2026 are:
- TWAP settlement — forces every crypto short-duration strategy to update fair value and resolution logic
- Volume-tiered rate limits — rewards real trading volume with higher throughput
Everything else (SDK improvements, pagination, collateral return, Perps features) is incremental but useful.
Check the official docs and @PolymarketDevs regularly. Endpoints and limits continue to evolve, and small mismatches between your code and the current production behavior are expensive on these markets.
If you have more questions, please feel free to contact me at any time: https://t.me/abrownfox001
My Polymarket Activity: https://polymarket.com/@abrownfox001?tab=activity
Top comments (0)