Resolution Intelligence
Map Polymarket markets to their resolution sources and track resolution timelines
Automated classification of Polymarket markets by resolution type (economic data, elections, legal, monetary policy) with mapping to authoritative resolution sources (BLS, BEA, FOMC, election boards, courts). Track expected resolution dates and source status for informed position timing.
How customers use this
Front-run resolution events
Know that CPI data drops at 8:30am ET and position 30 seconds before the market reacts. Resolution source metadata tells you exactly when and where the answer will appear.
Stale market detection
Find markets where resolution data already exists but the market price hasn't moved yet. These are free money — the answer is public but traders haven't updated their positions.
Calendar-based trading
Build a schedule of upcoming resolution events and position in advance. Know which markets resolve this week, what data source triggers resolution, and when that data is published.
Sample data
Example responses from the API. Each query returns structured JSON.
GET /api/v1/pm/resolution/abc123
{
"market_id": "abc123",
"question": "Will CPI exceed 3.0% for November 2025?",
"resolution_source": "BLS CPI Release",
"source_url": "https://www.bls.gov/cpi/",
"expected_release": "2025-12-11T13:30:00Z",
"status": "pending",
"current_yes_price": 0.31
} GET /api/v1/pm/resolution/calendar?days=7
{
"upcoming": [
{ "market_id": "abc123", "question": "CPI > 3.0% Nov 2025?", "resolves_at": "2025-12-11T13:30:00Z", "source": "BLS" },
{ "market_id": "def456", "question": "Fed rate cut Dec 2025?", "resolves_at": "2025-12-18T19:00:00Z", "source": "FOMC Statement" }
],
"total_resolving": 14
} GET /api/v1/pm/resolution/stats
{
"total_markets_mapped": 3421,
"resolution_sources": 89,
"pending_resolutions": 412,
"resolved_this_month": 234,
"last_updated": "2025-12-01T14:00:00Z"
} Use cases
- ✓ Know exactly when and where a market will resolve
- ✓ Time entries and exits around data release calendars
- ✓ Track resolution source status for active positions
- ✓ Build event-driven prediction market strategies
- ✓ Research market behavior around resolution events
Response fields
| Field | Type | Description |
|---|---|---|
| market_id | string | Polymarket condition ID |
| market_question | string | Market question text |
| resolution_source | string | Authoritative resolution data source |
| resolution_type | string | Classification: economic_data, election, legal, monetary_policy, other |
| expected_date | date | Estimated resolution date |
| source_url | string | URL of the resolution source |
| status | string | Resolution status: pending, resolved, disputed |
Example queries
Resolution info for a market
GET /api/v1/pm/resolution/0x1234 Resolution source, type, and expected date for a market
Upcoming resolution calendar
GET /api/v1/pm/resolution/calendar?days=7 Markets expected to resolve in the next 7 days
Free dataset stats
GET /api/v1/pm/resolution/stats Returns classification coverage statistics