Live on BNB Chain Mainnet

Predex Documentation

Everything you need to use Predex — the world's prediction market. Build, integrate, and forecast.

Build on Predex

Access real-time market data, events, and AI predictions through our public API. Free to use, no authentication required for read-only endpoints.

  • Public REST API with JSON responses
  • Real-time market data and prices
  • AI-generated probability estimates
  • Historical events and resolutions
View API docs
Terminal
// Fetch active markets
const res = await fetch('https://api.predexmarkets.com/api/events');
const { events } = await res.json();

// Returns:
{
  "events": [
    {
      "id": "...",
      "title": "Will BTC hit $150K?",
      "category": "crypto",
      "yesPool": 2450,
      "noPool": 1200,
      "endDate": "2026-12-31"
    }
  ]
}