Skip to content

Series

A series represents a temperature metric for a location (e.g., KXHIGHNY = NYC daily high temperature).

GET /api/v1/series

NameTypeRequiredDescription
activestringNoFilter by active status (true or false)
limitintegerNoMax results (default 1000, max 10000)
offsetintegerNoPagination offset
Terminal window
curl "https://api.mostlyright.xyz/api/v1/series?active=true&limit=5"
from therminal import TherminalClient
client = TherminalClient()
client.series(active=True, limit=5)
[
{
"ticker": "KXHIGHNY",
"measure_type": "high",
"title": "Highest temperature in NYC",
"station_code": "NYC",
"category": "Climate and Weather",
"frequency": "daily",
"tags": ["Daily temperature"],
"active": true,
"last_seen_at": "2026-03-20T11:27:56.156Z"
}
]
GET /api/v1/series
Click "Send →" to try it live

GET /api/v1/series/{ticker}

Terminal window
curl "https://api.mostlyright.xyz/api/v1/series/KXHIGHNY"
client.series_detail("KXHIGHNY")

Returns a single series object. Returns 404 if not found.