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.

Fetch events related to a specific event. Use this endpoint to surface similar markets when a user is viewing an event detail page, or to power a recommended feed.

Endpoint

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

Authentication

No authentication is required for this endpoint.

Parameters

id
integer
required
The unique identifier of the source event.

Response

Returns an array of related event objects.
id
integer
required
Unique identifier for the related event.
title
string
required
Display title of the related event. Maximum 150 characters.
wagers_count
integer
required
Number of wagers placed on this event in play money.
wagers_count_canonical
integer
required
Number of wagers placed on this event in real money.
volume_play_money
string
required
Total play money volume traded on this event. Returned as a decimal string.
volume_real_money
string
required
Total real money volume traded on this event. Returned as a decimal string.
bet_end_date
string
ISO 8601 datetime when betting closes. null if not set.
event_start_date
string
ISO 8601 datetime when the underlying event begins. null if not set.
highest_market
string
required
Title or label of the leading market in play money mode.
highest_market_real_money
string
required
Title or label of the leading market in real money mode.

Example

cURL
curl --request GET \
  --url "https://api.futuur.com/events/1023/related_events/"
Sample response
[
  {
    "id": 1187,
    "title": "Will the Nasdaq close above 18,000 by end of Q2 2026?",
    "wagers_count": 312,
    "wagers_count_canonical": 48,
    "volume_play_money": "84520.00",
    "volume_real_money": "1240.50",
    "bet_end_date": "2026-06-30T23:59:59Z",
    "event_start_date": "2026-01-15T00:00:00Z",
    "highest_market": "Yes",
    "highest_market_real_money": "Yes"
  },
  {
    "id": 1206,
    "title": "Will the Federal Reserve cut rates before July 2026?",
    "wagers_count": 540,
    "wagers_count_canonical": 91,
    "volume_play_money": "120030.00",
    "volume_real_money": "3015.00",
    "bet_end_date": "2026-07-31T23:59:59Z",
    "event_start_date": null,
    "highest_market": "Yes",
    "highest_market_real_money": "No"
  }
]