1. Discover
Find the markets you care about. Three common entry points:By volume
GET /v2/polymarket/markets?sort=volumeTrending markets, ranked.By search
GET /v2/markets/search?q=...Cross-venue search by question text.By canonical outcome
GET /v2/marketsPredexon’s normalized outcome view — one predexon_id spans every venue holding it.2. Signal
Find a reason to trade. The signals Predexon gives you out of the box:| Signal | Endpoint | What it tells you |
|---|---|---|
| Smart-money flow | /v2/polymarket/market/{condition_id}/smart-money | Are profitable wallets net buyers or sellers right now? |
| Smart activity | /v2/polymarket/smart-activity | Which markets are smart wallets piling into? |
| Top holders | /v2/polymarket/markets/{condition_id}/top-holders | Position concentration on each side. |
| Wallet P&L | /v2/polymarket/wallet/pnl/{wallet} | Track-record check before following a wallet. |
| Cross-venue spread | matched pairs + market price | Same outcome, different prices — direct arbitrage. |
| Pending trades | WebSocket pending-trades | 3–5s edge on confirmed fills, from the Polygon mempool. |
3. Size
Sizing decisions are yours. The data you’ll usually want before pulling the trigger:- Liquidity check: current orderbook snapshot — what depth is there at your target price?
- Recent volume: volume chart — is this a thin market or a deep one?
- Open interest:
/v2/polymarket/markets/{condition_id}/open_interest— total dollars at risk. - Your account balance: Get Balance on the venue you’re about to trade.
4. Execute
Execution goes through venue-specific orders.Venue-specific order
Place directly on a venue with a
market bag. Choose your venue, use native order types, and get a normalized response shape.5. Monitor
Once you have positions, you watch two things: fills and mark-to-market.| What | Where |
|---|---|
| Live fills on your wallet | WebSocket trades with filters.users: ["<your venue wallet>"] |
| Live splits / merges / redemptions | WebSocket activity |
| Live orderbook + best bid/ask | WebSocket orderbook |
| Current positions (aggregated) | Get Positions on the Trading API |
| Realized + unrealized P&L | Wallet P&L on the Data API |
GET /accounts/{accountId} plugs straight into any Data API wallet endpoint.
Putting it together
Strategies people build with this loop:- Cross-venue arbitrage — matched pairs + market price to surface spreads; place each leg with a venue-specific order.
- Smart-money following — smart-money endpoint or top-holders for entry signals, WebSocket trades to monitor the wallets you’re shadowing.
- Mempool front-running — pending-trades WebSocket as a leading indicator, venue-specific order with aggressive price.
- Market-making — orderbook WebSocket for live depth, venue-specific limit orders, fee-policy partner cuts on any fills you take in.
Next
Data & Signals overview
Full map of the data side — every endpoint, organized by utility.
Unified Execution overview
Full map of the execution side — accounts, funding, fees.
