Skip to main content
Predexy integrates seven prediction market venues and exposes statistics for each one. Platform slugs are used as identifiers throughout the API — in arbitrage opportunities, the wallet tracker, market filters, and discover responses. This page documents the platform statistics and chart data endpoints.

Integrated platforms

The following platforms are currently indexed by Predexy: Platform slugs are stable identifiers. Wherever the API returns a platform_slug field — in DiscoverItem.platform_slugs, ArbitrageOpportunity.buy_platform.slug, TrackedPosition.platform, or elsewhere — the value will be one of the seven slugs above.

Get platform statistics

Returns aggregated statistics for the specified platform, including market counts, total volume, and active market metrics.

Authentication

A session JWT is required:

Path parameters

slug
string
required
Platform slug. Must be one of: polymarket, limitless, predictfun, manifold, predictit, azuro, drift.

Example request

cURL

PlatformInfo schema

Platform identifiers appear throughout the API in the PlatformInfo shape:
id
string
required
Platform UUID in Predexy’s database.
slug
string
required
URL-safe platform identifier, e.g. polymarket.
name
string
required
Display name, e.g. "Polymarket".

Sample response

Get platform volume chart

Returns daily volume data points suitable for charting historical platform activity.

Path parameters

slug
string
required
Platform slug.

Query parameters

days
number
default:"30"
Number of days of historical data to return.

Example request

cURL

Sample response

Use platform slugs as filters throughout the API. For example, pass platform=polymarket to GET /api/v1/markets to see only Polymarket listings, or filter arbitrage opportunities to show only those where buy_platform.slug is a specific venue you support.