Skip to main content
The question detail endpoint returns everything Predexy knows about a single canonical question. The response includes every platform market linked to that question, each market’s outcome prices and 24-hour volume, the algorithm that matched it, and the computed index — including the best buy and sell prices, spread in basis points, and per-platform price breakdown.

Endpoint

Authentication

A session JWT is required:

Path parameters

id
string
required
Canonical question UUID. Obtain this from the id field returned by GET /api/v1/discover.

Example request

cURL

Response

The response wraps a single QuestionDetail object in data.

QuestionDetail fields

id
string
required
Canonical question UUID.
title
string
required
Canonical question text.
slug
string
required
URL-safe identifier.
category
string
required
Market category.
end_time
string
ISO 8601 expiry timestamp. null for perpetual markets.
markets
QuestionMarket[]
required
All platform markets linked to this canonical question.
index
IndexResult
required
Computed cross-platform index for this question.

Sample response

The platform_prices map in the index result is the fastest way to compare prices at a glance. If you need to act on an opportunity, pair the best_buy_platform and best_sell_platform values with the corresponding platform_market_id from the markets array to route your order to the right venue.