What this page covers
- What Manifold Markets is and how it differs from real-money platforms
- Manifold Markets API overview and key endpoints
- When to use Manifold vs real-money platforms
- How to access real-money prediction market data and analysis
What is Manifold Markets?
Manifold Markets is an open-source prediction market platform that uses play money (called “mana”). Anyone can create a market on any topic, making it popular for community forecasting, research, and casual predictions.| Feature | Details |
|---|---|
| Currency | Play money (mana) — not real money |
| Market creation | Anyone can create a market |
| Categories | Unlimited — user-generated |
| Source code | Open source (GitHub) |
| API | Full REST API, no auth required for reads |
| Community | Active forecasting community, academic research |
Key difference: play money vs real money
Manifold uses play money, which means prices may not reflect real market consensus the way real-money platforms do. Real money creates stronger incentives for accurate pricing — traders with genuine financial exposure research more thoroughly and correct mispricings faster. For serious analysis, trading signals, or building trading bots, real-money platforms (Kalshi, Polymarket) provide more reliable price signals.Manifold Markets API
Manifold has a clean REST API. No authentication is needed for read operations.Base URL
List markets
Get a single market
Search markets
Market data format
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier |
| question | string | The market question |
| probability | number | Current probability (0-1) |
| totalLiquidity | number | Available liquidity (mana) |
| volume | number | Total volume traded (mana) |
| creatorName | string | Who created the market |
| closeTime | number | When trading closes (Unix ms) |
| resolution | string | YES, NO, MKT, or null if unresolved |
| mechanism | string | cpmm-1 (constant product market maker) |
Place a trade (requires auth)
Trading requires an API key from your Manifold account:Python SDK
The community maintains a Python client:When to use Manifold vs real-money platforms
| Use case | Manifold | Real-money (Kalshi/Polymarket) |
|---|---|---|
| Community forecasting | Yes | |
| Custom market creation | Yes | |
| Academic research on crowd wisdom | Yes | |
| Casual predictions with friends | Yes | |
| Financial trading and profit | Yes | |
| Building automated trading bots | Yes | |
| AI-powered analysis and signals | Yes | |
| Cross-platform arbitrage | Yes | |
| Portfolio management with real P&L | Yes |
Real-money prediction market APIs
If you need real-money market data, AI analysis, or trading signals, the Rekko API provides unified access to Kalshi, Polymarket, and Robinhood:What’s next
API comparison
Kalshi vs Polymarket vs Robinhood — detailed comparison.
Build a trading bot
Step-by-step Python trading bot tutorial.
Quickstart
Get a free API key and start querying real-money markets.