API Keys

Historical statistics

Returns per-day statistics for the requested period. Requires authentication — these figures include revenue and are not public.

get/stats/history

Query parameters

periodinteger

Number of days to retrieve (1–90, default 7)

Response

Historical stats array

datestring date required
totalinteger required
revenuenumber required
p50_msinteger nullable

Median served latency for the day, in milliseconds. Null below 20 measured requests: a percentile over a handful of samples is noise, and a gap is more honest than a made-up figure.

p95_msinteger nullable

95th percentile of served latency. Same 20-sample floor as p50_ms.

p99_msinteger nullable

The tail: 99th percentile of served latency, which is what a caller making thousands of requests is exposed to and what a timeout budget should be set from. Its floor is 100 measured requests, not 20, and that is arithmetic rather than caution: the rank n0.99 lands on the same row as n0.95 at 20 samples, so a lower floor would publish the p95 twice under two names. Null below it.

Changes