Discover/predictparity.com API
live

predictparity.com APIpredictparity.com

Access PredictParity prediction market data: search markets, get detailed outcomes with APY, browse tags, and query trader leaderboards via 4 REST endpoints.

Endpoints
4
Updated
5h ago
Try it
Comma-separated list of tag slugs to include (e.g. highest-temperature,weather,politics). Use get_tags endpoint to discover available tag slugs.
Number of results per page (1-100).
Text search query to filter markets by question/title.
Pagination offset (0-based).
Market status filter. Accepts: active, resolved, closed.
Field to sort by. Accepts: volume24h, volume1h, liquidity, endDate, startDate.
Sort direction. Accepts: desc, asc.
Comma-separated list of tag slugs to exclude (e.g. sports,crypto).
api.parse.bot/scraper/51e2bb62-bec2-4e76-9175-ec870cb81137/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/51e2bb62-bec2-4e76-9175-ec870cb81137/search_markets' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search and list prediction markets with optional filters for tags, status, and text search. Returns paginated results sorted by the specified field. Useful for finding weather prediction markets, political markets, and more.

Input
ParamTypeDescription
tagsstringComma-separated list of tag slugs to include (e.g. highest-temperature,weather,politics). Use get_tags endpoint to discover available tag slugs.
limitintegerNumber of results per page (1-100).
querystringText search query to filter markets by question/title.
offsetintegerPagination offset (0-based).
statusstringMarket status filter. Accepts: active, resolved, closed.
sort_bystringField to sort by. Accepts: volume24h, volume1h, liquidity, endDate, startDate.
sort_orderstringSort direction. Accepts: desc, asc.
excluded_tagsstringComma-separated list of tag slugs to exclude (e.g. sports,crypto).
Response
{
  "type": "object",
  "fields": {
    "limit": "integer current limit",
    "offset": "integer current offset",
    "markets": "array of market objects with id, question, outcomes, volume, tags, etc.",
    "has_more": "boolean indicating if more results are available"
  },
  "sample": {
    "limit": 3,
    "offset": 0,
    "markets": [
      {
        "id": "95185f4d-6fcb-4951-8769-7ca490fa2c35",
        "slug": "highest-temperature-in-hong-kong-on-june-6-2026-30c",
        "tags": [
          {
            "slug": "weather",
            "label": "Weather"
          }
        ],
        "status": "active",
        "volume": 113536.17,
        "endDate": "2026-06-06T12:00:00.000Z",
        "eventId": "fac5dacc-11df-45a9-9558-42d9db7acdea",
        "outcomes": [
          {
            "result": null,
            "spread": 2000,
            "midPoint": 999000,
            "isPrimary": true,
            "outcomeId": "a151decf-67b6-427b-bed9-8ec5c79d135a",
            "outcomeName": "Yes"
          }
        ],
        "platform": "polymarket",
        "question": "Will the highest temperature in Hong Kong be 30°C on June 6?",
        "liquidity": 4279.83,
        "startDate": "2026-06-05T04:17:22.956Z",
        "volume24h": 109380.66,
        "eventTitle": "Highest temperature in Hong Kong on June 6?",
        "displayNameShort": "30°C"
      }
    ],
    "has_more": true
  }
}

About the predictparity.com API

The PredictParity API exposes 4 endpoints covering prediction market search, individual market details, tag discovery, and trader analytics. The search_markets endpoint lets you filter across weather, geopolitics, crypto, and other market categories by tag slug, status, sort field, and text query. Each market record includes outcomes with midPoint, spread, and APY alongside liquidity and net flow volume data.

Market Search and Discovery

The search_markets endpoint accepts up to eight parameters: tags and excluded_tags accept comma-separated tag slugs (e.g., highest-temperature,weather), status filters by active, resolved, or closed, and sort_by accepts volume24h, volume1h, liquidity, endDate, or startDate. Results are paginated via limit and offset, and the has_more boolean tells you whether another page exists. The response markets array contains each market's id, question, outcomes, volume, and associated tags.

Market Details

get_market takes a market slug (available from search results) and returns the full record: description with resolution criteria, outcomes array with per-outcome midPoint, spread, and apy, plus liquidity, total volume in USD, and a netFlowVolumes object showing directional volume flow. An optional platform parameter currently accepts polymarket, allowing cross-platform lookups on supported markets.

Tags and Traders

get_tags returns a flat list of tag objects, each with a slug, human-readable label, and activeMarketCount. This is the canonical way to discover valid slugs before passing them into search_markets. The get_traders endpoint lists platform traders with analytics, badges, and trading traits, sortable by volume, pnl, or rank, and supports text search via the query parameter alongside standard limit/offset pagination.

Common use cases
  • Monitor active weather prediction markets by filtering search_markets with the highest-temperature or weather tag slugs.
  • Track APY and spread on geopolitical outcomes by calling get_market with a slug like will-china-invade-taiwan-before-2027.
  • Build a leaderboard dashboard by querying get_traders sorted by pnl or rank with paginated results.
  • Discover which market categories are most active by checking activeMarketCount from get_tags.
  • Alert on newly opened crypto prediction markets by polling search_markets with status=active and sort_by=startDate.
  • Analyze net directional sentiment by reading netFlowVolumes from get_market across a portfolio of market slugs.
  • Find underexplored market niches by combining excluded_tags and sort_by=liquidity in search_markets.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does PredictParity have an official developer API?+
PredictParity does not publish a documented public developer API. This Parse API provides structured access to its market, tag, and trader data through four endpoints.
What does `get_market` return beyond a market's current price?+
Beyond price, get_market returns per-outcome midPoint, spread, and apy, the full description with resolution criteria, current liquidity, total volume in USD, and a netFlowVolumes object that breaks down directional volume flow for the market.
Can I retrieve historical trade or order book data for a specific market?+
Not currently. The API returns current market state including outcomes, liquidity, and net flow volumes, but does not expose a historical time series of trades or order book snapshots. You can fork this API on Parse and revise it to add a historical data endpoint if PredictParity surfaces that data.
How does tag filtering in `search_markets` work, and where do I get valid tag slugs?+
The tags and excluded_tags parameters accept comma-separated slugs. Call get_tags first — it returns every available slug alongside its label and activeMarketCount. Slugs from that response are the valid inputs for search_markets filtering.
Does the API cover markets from platforms other than PredictParity itself?+
The get_market endpoint accepts an optional platform parameter that currently supports polymarket. Cross-platform search filtering and trader data from external platforms are not currently covered. You can fork this API on Parse and revise it to add broader multi-platform support.
Page content last updated . Spec covers 4 endpoints from predictparity.com.
Related APIs in FinanceSee all →
fred.stlouisfed.org API
Access data from fred.stlouisfed.org.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
banks.data.fdic.gov API
Search FDIC-insured banks by location or institution, and access detailed information about their financial performance, merger history, deposit demographics, and regulatory changes. Get comprehensive data on bank failures, acquisitions, and historical financial trends to research institutions and analyze the banking landscape.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.