Predexon API
  • Documentation
  • API Reference
Getting Started
    IntroductionQuickstart
Guides
Resources
    Predexon WebsiteJoin Discord
powered by Zudoku
Getting Started

Predexon API

Predexon provides a unified API for accessing prediction market data across multiple platforms. Get real-time and historical data from Polymarket and Kalshi through a single, consistent interface.

New to prediction markets? Predexon handles the complexity of aggregating data from multiple sources so you can focus on building great applications.

Key Features

FeatureDescription
Cross-Platform MatchingFind equivalent markets on Polymarket and Kalshi to identify arbitrage opportunities
Real-Time DataCurrent prices, volumes, and liquidity across all markets
Historical DataCandlestick charts, volume trends, and price history
Wallet AnalyticsTrack PnL and positions for any Polymarket wallet
Unified SchemaConsistent data format regardless of source platform

Available Endpoints

Market Matching

EndpointDescription
GET /v1/matching-marketsFind Kalshi markets matching a Polymarket slug (or vice versa)
GET /v1/matching-markets/pairsGet all active exact matched pairs for arbitrage discovery

Kalshi Data

EndpointDescription
GET /v1/kalshi/marketsList Kalshi markets with filters and sorting
GET /v1/kalshi/tradesHistorical Kalshi trade data
GET /v1/kalshi/orderbooksHistorical Kalshi orderbook snapshots

Polymarket Data

EndpointDescription
GET /v1/polymarket/marketsList markets with filters (totals only)
GET /v1/polymarket/markets/activeActive markets with 24h/1w/1m volume & liquidity
GET /v1/polymarket/candlesticks/{id}OHLCV data at 1m, 1h, or 1d intervals
GET /v1/polymarket/market-price/{id}Current or historical price for a token
GET /v1/polymarket/ordersTrade history and order flow
GET /v1/polymarket/tradesHistorical trade data with flexible filtering
GET /v1/polymarket/activityUser trading activity (merges, splits, redeems)
GET /v1/polymarket/wallet/pnl/{address}Realized PnL for a wallet
GET /v1/polymarket/wallet/positions/{address}Current positions with unrealized PnL
GET /v1/polymarket/orderbooksHistorical orderbook snapshots (data from Jan 1, 2026)

Time Series

EndpointDescription
GET /v1/polymarket/markets/{id}/volumeHistorical volume over time
GET /v1/polymarket/markets/{id}/open_interestHistorical open interest over time

Authentication

All API endpoints (except /health) require authentication via API key:

TerminalCode
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.predexon.com/v1/polymarket/markets/active

Never expose your API key in client-side code. Use environment variables and server-side requests.

Quick Example

Get the top 5 markets by volume with a single request:

TerminalCode
curl -X GET "https://api.predexon.com/v1/polymarket/markets/active?limit=5&sort=volume" \ -H "Authorization: Bearer YOUR_API_KEY"
Code
{ "markets": [ { "title": "Will Trump win the 2024 election?", "side_a_price": 0.52, "volume_24_hours": 1250000.00, "volume_total": 150000000.00, "status": "open" } ], "pagination": { "total": 1250, "has_more": true } }

Rate Limits

TierRequests/MinuteBest For
Free60Personal projects
Pro500Production apps

See Rate Limits for details on handling limits and upgrading.

Getting Started

  1. Get an API Key - Sign up at predexon.com
  2. Make Your First Request - Follow the Quickstart Guide
  3. Explore the API - Browse the API Reference
  4. Handle Errors - Review Error Handling

Use Cases

Arbitrage Detection

Code
Find price discrepancies between Polymarket and Kalshi for the same events

Trading Dashboards

Code
Build real-time dashboards with price charts and volume metrics

Portfolio Tracking

Code
Monitor wallet PnL and trading activity across markets

Market Research

Code
Analyze historical price movements and volume trends

Support

Need help? We're here for you:

  • Documentation - You're reading it!
  • API Reference - Interactive docs for all endpoints
  • Discord - Join our community
  • Email - [email protected]
Last modified on January 8, 2026
Quickstart
On this page
  • Key Features
  • Available Endpoints
    • Market Matching
    • Kalshi Data
    • Polymarket Data
    • Time Series
  • Authentication
  • Quick Example
  • Rate Limits
  • Getting Started
  • Use Cases
  • Support
JSON