Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.futuur.com/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve the latest event details for a live market. This endpoint returns the same EventDetail shape as Retrieve event, but is intended for polling live scoreboards, in-play markets, and other frequently updating event data.

Endpoint

GET https://api.futuur.com/events/{id}/live_data/

Authentication

No authentication is required for this endpoint.

Parameters

id
integer
required
The unique identifier of the event.

Response

Returns an EventDetail object. See Retrieve event for the full field reference, including status, markets, resolution_mode, and volume fields.

Example

cURL
curl --request GET \
  --url "https://api.futuur.com/events/1023/live_data/"
Sample response
{
  "id": 1023,
  "title": "Will the S&P 500 close above 5000 by end of Q2 2026?",
  "slug": "sp500-above-5000-q2-2026",
  "status": "open",
  "bet_end_date": "2026-06-30T23:59:59Z",
  "resolve_date": null,
  "resolution_mode": "exclusive",
  "order_book_enabled": true,
  "tags": [
    { "name": "finance", "slug": "finance" },
    { "name": "stocks", "slug": "stocks" }
  ],
  "category": [
    { "id": 4, "title": "Finance", "slug": "finance", "parent": null }
  ],
  "markets": [
    {
      "id": 501,
      "title": "Yes",
      "price": 0.62,
      "status": "active",
      "position_labels": "yesno"
    },
    {
      "id": 502,
      "title": "No",
      "price": 0.38,
      "status": "active",
      "position_labels": "yesno"
    }
  ],
  "volume_play_money": "125000.00",
  "volume_real_money": "42000.00"
}
Use this endpoint when you need fresh event state on a short polling interval. For static detail pages, prefer GET /events/{id}/.