Markets
A market is a single strike within an event (e.g., “Will NYC high exceed 50°F on March 20?”).
List markets
Section titled “List markets”GET /api/v1/markets
Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
series | string | No | Filter by series ticker |
station | string | No | Filter by station code |
from | string | No | Close time >= (RFC3339) |
to | string | No | Close time <= (RFC3339) |
limit | integer | No | Max results (default 1000) |
offset | integer | No | Pagination offset |
Example
Section titled “Example”curl "https://api.mostlyright.xyz/api/v1/markets?series=KXHIGHNY&limit=3"from therminal import TherminalClientclient = TherminalClient()client.markets(series="KXHIGHNY", limit=3)Response
Section titled “Response”[ { "ticker": "KXHIGHNY-26MAR20-T50", "event_ticker": "KXHIGHNY-26MAR20", "series_ticker": "KXHIGHNY", "status": "active", "result": "", "close_time": "2026-03-21T03:59:00Z" }]Try it
Section titled “Try it” GET
/api/v1/markets Click "Send →" to try it live Get market detail
Section titled “Get market detail”GET /api/v1/markets/{ticker}
curl "https://api.mostlyright.xyz/api/v1/markets/KXHIGHNY-26MAR20-T50"Returns a single market object. Returns 404 if not found.