Skip to main content
GET
cURL

Authorizations

Authorization
string
header
required

User session token

Path Parameters

symbol
string
required

Instrument symbol

Query Parameters

account_id
string | null

The trading account to read. Omit for the caller's default account.

cursor
integer<int32> | null

Resume token from a previous page's next_cursor: return minutes older than the last one returned. Keyset, so a minute sampled while paging cannot shift a later page.

Required range: x >= 0
epoch
string<date-time> | null

The epoch_start_ts of the epoch to read, as returned in epochs. An epoch that never ran is a 404. Omit to read the symbol's most recent sampled epoch, or the running one if it has never sampled.

limit
integer<int32> | null

How many of the epoch's most recent sampled minutes to return; they come back oldest first. Defaults to 240, and is clamped to at least 1 and at most one full epoch rather than rejected.

Required range: x >= 0

Response

The caller's per-minute scores for one epoch, plus their recent epochs

snapshots
object[]
required

One page of the selected epoch's minutes, oldest first.

summary
object
required

The selected epoch rolled up for the caller, over the whole epoch — not only the minutes returned in snapshots.

next_cursor
integer<int32> | null

Pass as cursor for the next, older page. null on the last page.

Required range: x >= 0