Skip to main content
GET
/
v2
/
price-action
curl
curl "https://api.noxstock.com/v2/price-action?symbol=AAPL" \
  -H "X-API-Key: $NOXSTOCK_API_KEY"
{ "data": { "as_of": "2026-06-05T14:19:11Z", "cache_age_seconds": 0, "drawdowns": { "max_1y": { "pct": -13.8, "peak_date": "2025-12-02", "trough_date": "2026-01-20" }, "max_5y": { "pct": -33.36, "peak_date": "2024-12-26", "trough_date": "2025-04-08" }, "max_90d": { "pct": -11.24, "peak_date": "2026-02-06", "trough_date": "2026-03-30" } }, "freshness": "intraday", "gaps": { "latest_open_vs_prior_close_pct": 0.96, "unfilled_gaps_30d": 1 }, "market_status": "open", "recent_extremes": { "high_30d": { "date": "2026-06-03", "value": 316.94 }, "high_90d": { "date": "2026-06-03", "value": 316.94 }, "low_30d": { "date": "2026-04-27", "value": 264.83 }, "low_90d": { "date": "2026-03-30", "value": 245.28 } }, "streaks": { "biggest_down_day_1y_pct": -5, "biggest_down_day_30d_pct": -1.84, "biggest_up_day_1y_pct": 5.09, "biggest_up_day_30d_pct": 3.24, "consecutive_days": 0, "direction": "none" }, "symbol": "AAPL", "trend_context": { "consecutive_higher_highs": 0, "consecutive_lower_lows": 0, "pct_days_above_sma50_90d": 53 }, "volume": { "avg_30d": 48146449, "latest": 44869134, "ratio_to_avg": 0.93, "ratio_to_sector_avg": 3.75, "ratio_to_sector_status": { "supported": true } } } }

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"

Response

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

data
PriceActionData · object
required

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