Get your free API key at dashboard.predexon.com to unlock higher rate limits and try all endpoints interactively.
Overview
Predexon API provides RESTful endpoints for accessing prediction market data. All endpoints return JSON responses and use standard HTTP methods.Base URL
API Versions
All v2 endpoints are under/v2/. If you’re using v1, switch versions using the dropdown at the top of the page.
Endpoint Categories
Polymarket
Markets, prices, candlesticks, orderbooks, trades, wallet positions, and P&L.
Cross-Platform Matching
Find equivalent markets across Polymarket and Kalshi.
Kalshi endpoints coming soon. Currently, Kalshi data is available through the cross-platform matching API.
Common Parameters
Pagination
Most list endpoints support two pagination methods:Offset-based Pagination
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20-100 | Number of items to return |
offset | integer | 0 | Number of items to skip |
Key-based Pagination
For large datasets or real-time data, use cursor/key-based pagination for better performance:| Parameter | Type | Description |
|---|---|---|
limit | integer | Number of items to return |
cursor | string | Pagination cursor from previous response |
next_cursor as the cursor parameter in subsequent requests to fetch the next page.
Time Parameters
Time-based endpoints accept Unix timestamps in seconds:| Parameter | Type | Description |
|---|---|---|
start_time | integer | Start of time range (Unix timestamp) |
end_time | integer | End of time range (Unix timestamp) |
Some endpoints (like orderbooks) use milliseconds. Check individual endpoint documentation.
Sorting
Endpoints with sortable results accept:| Parameter | Type | Description |
|---|---|---|
sort | string | Field to sort by |
order | string | asc or desc |
Response Format
Success Responses
All successful responses return HTTP 200 with JSON body:Error Responses
Errors return appropriate HTTP status codes with a JSON body:| Status Code | Description |
|---|---|
| 400 | Bad Request - Invalid parameters |
| 403 | Forbidden - Invalid or missing API key |
| 404 | Not Found - Resource doesn’t exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Internal Server Error |
| 503 | Service Unavailable - Database issue |
Health Check
Verify API availability:OpenAPI Specification
The complete OpenAPI 3.0 specification is available for generating client SDKs:OpenAPI Specification
Download the OpenAPI JSON specification
Global Constraints
The following constraints apply across all v2 endpoints:| Constraint | Value |
|---|---|
| Max search length | 100 characters (minimum 3) |
| Max array filter items | 50 items |
Offset has no upper limit. Individual endpoint limits vary—see each endpoint for specific
limit ranges.Rate Limits
| Tier | Rate Limit | Monthly Requests | Overage | Price |
|---|---|---|---|---|
| Free | 1 req/sec | 1,000 | — | $0/month |
| Dev | 20 req/sec | 1,000,000 | $5 / 100K | $49/month |
| Pro | 100 req/sec | 5,000,000 | $2.50 / 100K | $249/month |
| Enterprise | Custom | Unlimited | — | $499+/month |
Free Endpoints (All Plans)
The following endpoints are free and unlimited — they do not count toward your monthly usage limits on any plan: Polymarket:/v2/polymarket/markets— List markets/v2/polymarket/events— List events/v2/polymarket/crypto-updown— Crypto up/down markets/v2/polymarket/market-price/{token_id}— Market price/v2/polymarket/candlesticks/{condition_id}— Candlesticks/v2/polymarket/volume-chart/{condition_id}— Volume chart/v2/polymarket/orderbooks— Orderbook history/v2/polymarket/trades— Trades history/v2/polymarket/activity— Wallet activity/v2/polymarket/markets/{token_id}/volume— Volume time series/v2/polymarket/markets/{condition_id}/open_interest— Open interest/v2/polymarket/positions— All positions
/v2/kalshi/markets— List markets/v2/kalshi/trades— Trades history/v2/kalshi/orderbooks— Orderbook history
/v2/dflow/trades— Trades history
Gated Endpoints (Dev & Pro only)
The following endpoint categories require a Dev or Pro tier subscription:- Cross-Platform Matching —
/v2/matching-markets/* - Smart Money & Analytics — Leaderboards, cohort stats, wallet profiles, smart activity
- Binance Data —
/v2/binance/*
