Skip to main content
GET
/
v2
/
history
curl
curl "https://api.noxstock.com/v2/history?symbol=AAPL&series=close&range=1m" \
  -H "X-API-Key: $NOXSTOCK_API_KEY"
{ "data": { "as_of": "2026-06-05T14:19:11Z", "cache_age_seconds": 0, "cadence": "daily", "columns": [ "date", "close" ], "freshness": "intraday", "market_status": "open", "period": "1m", "rows": [ [ "2026-05-05", 283.9180829493 ], [ "2026-05-06", 287.2450138249 ], [ "2026-05-07", 287.175078341 ], [ "2026-05-08", 293.0496589862 ], [ "2026-05-11", 292.68 ], [ "2026-05-12", 294.8 ] ], "symbol": "AAPL" } }

Authorizations

X-API-Key
string
header
required

noxstock API key from the dashboard. Keys start with nxs_ and are shown once when created.

Query Parameters

symbol
string
required

Ticker symbol. Case-insensitive; share-class dots are normalized to dashes (BRK.B == BRK-B). Returns SYMBOL_UNKNOWN when the symbol is outside the supported universe.

Example:

"AAPL"

series
string | null

Comma-separated list of history series, max 3. Allowed values: close, volume, rsi_14, roic_pct, fcf_margin_pct, gross_margin_pct, dividend. daily/weekly support close, volume, rsi_14; quarterly/annual support roic_pct, fcf_margin_pct, gross_margin_pct; per-payment supports dividend.

Example:

"close,volume"

range
enum<string> | null

Historical lookback window. Allowed values: 1m, 1mo, 3m, 3mo, 6m, 6mo, 1y, 2y, 5y, 10y, 30y, ytd, max. Long mo forms normalize to short month forms; max is capped at 30y.

Available options:
1m,
1mo,
3m,
3mo,
6m,
6mo,
1y,
2y,
5y,
10y,
30y,
ytd,
max
Example:

"1y"

period
enum<string> | null

Legacy alias for range (back-compat).

Available options:
1m,
1mo,
3m,
3mo,
6m,
6mo,
1y,
2y,
5y,
10y,
30y,
ytd,
max
Example:

"1m"

cadence
enum<string> | null

Row cadence. Allowed values: daily, weekly, quarterly, annual, per-payment.

Available options:
daily,
weekly,
quarterly,
annual,
per-payment
Example:

"daily"

Response

Success envelope: { "data": ... }.

data
HistoryData · object
required

The endpoint payload. Present on every 2xx response; never null.