Platform

One integration gives your product:

Four things, one integration. Here's what each one actually does, and what it looks like from the API.

Markets

A live catalogue your users browse inside your app, scoped to what you allow. Every event arrives normalised — one question, every outcome, priced — regardless of which upstream venue it came from, so your product never has to speak a venue-specific format.

Execution

Orders priced, taken and routed. Take a quote, then submit the order against it before it expires — if the price is no longer available the order is rejected rather than filled at something else. Nothing for you to match, and nothing to hedge.

Positions

What each user holds, marked continuously against the live price, with an exit available any time before the event closes. Your users see a real-time number, not a value that's stale until settlement.

Settlement

Resolved once and reported to your ledger by webhook, so your balance never guesses. Every settlement record is safe to apply twice — a retried delivery credits the same winner once, not twice.

Every category, live

PoliticsEconomyFinanceStocksCryptoTechWeatherEntertainmentCultureWorldBusinessScienceHealthEsports

What execution actually looks like.

Not a mockup — this is priced live, right now, by the same function the quote service calls against a real market.

Post/api/v1/quotes
Authorization: Bearer sk_live_…
X-Predicta-User: your-user-id

{ "marketId": "…", "side": "YES", "stake": 25 }

← 200
{
  "quoteId": "qt_…",
  "executionPrice": 0.675,
  "contracts": 36.5926,
  "potentialPayout": 36.59,
  "expiresAt": "…",
  "simulated": true
}