One API call to simulate any Polymarket wallet with real delays, fees, and slippage. Know if a wallet is worth copying before you deploy capital.
Tick-level pricing from real Polymarket trades. Test 2s, 5s, 30s delays — not just minute candles.
Point-in-time L2 snapshots simulate realistic fill prices based on actual liquidity depth.
Resolved markets use actual settlement prices. No lookahead bias. Accurate win rates.
Test multiple copy delays in a single run. See exactly where edge degrades.
Idempotency-Key header prevents duplicate runs on retries. Safe for automated pipelines.
Download every simulated trade as CSV. Feed into your own analytics or risk models.
Create a simulation, poll for results, download the full trade log.
curl -X POST https://polycopysim.com/api/v1/simulations \
-H "Authorization: Bearer pcs_live_..." \
-H "Content-Type: application/json" \
-H "Idempotency-Key: wallet-scan-001" \
-d '{
"wallets": ["0x1234...abcd"],
"startTs": 1711929600,
"endTs": 1712534400,
"fixedUsdcPerTrade": 100,
"initialCapitalUsdc": 10000,
"delaysSec": [0, 5, 30, 120],
"slippageBps": 10,
"pricingSource": "TRADES"
}'{
"requestId": "req_abc123...",
"data": {
"status": "DONE",
"summary": [{
"wallet": "0x1234...abcd",
"realWallet": { "pnlUsdc": 2340.50, "turnoverRoiPct": 23.4, "winRate": 68.2 },
"bestFixed": { "delaySec": 5, "pnlUsdc": 2180.30, "turnoverRoiPct": 21.8, "winRate": 66.1 },
"proportional": [
{ "delaySec": 5, "capitalRoiPct": 18.2, "maxDrawdownPct": 6.4 },
{ "delaySec": 30, "capitalRoiPct": 15.1, "maxDrawdownPct": 8.9 }
]
}]
}
}curl -o trades.csv https://polycopysim.com/api/v1/simulations/clx.../export \ -H "Authorization: Bearer pcs_live_..." # Or gzipped for faster download curl -o trades.csv.gz ".../export?format=gz" \ -H "Authorization: Bearer pcs_live_..."
Bearer API keys with scoped permissions. Keys are SHA-256 hashed at rest. Revocable instantly.
Send Idempotency-Key header. Retries return cached results. No duplicate runs.
10 creates/min, 60 reads/min, 20 exports/min. Standard X-RateLimit-* headers.
Teams already using the API
Screen wallets before adding them to your copy pool. Filter by delay tolerance, drawdown, and win rate.
Batch-test top Polymarket wallets nightly. Rank by copyability score and notify your team.
Feed simulation results into your internal risk tools. Track edge decay across your copied wallets.
Export full trade logs for custom analysis. Build your own alpha models on top of our simulation engine.
We'll set up a staging API key for your team. Typical integration takes less than a day.
API access is currently granted manually to approved teams. Staging keys are available for evaluation.