Skip to main content
GET
/
v2
/
snapshot
curl
curl "https://api.stockcontext.com/v2/snapshot?symbol=AAPL" \
  -H "X-API-Key: $STOCKCONTEXT_API_KEY"
{
  "data": {
    "as_of": "2026-06-12T14:12:18Z",
    "asset_type": "stock",
    "cache_age_seconds": 0,
    "currency": "USD",
    "events": {
      "latest_filing": {
        "accession": "0000320193-26-000013",
        "filing_date": "2026-05-01",
        "form": "10-Q"
      },
      "next_earnings_date_estimated": "2026-07-29"
    },
    "freshness": "intraday",
    "fundamentals_quick": {
      "beta_5y_weekly": 1.17,
      "dividend_yield_pct": 0.37,
      "enterprise_value_usd": 4303149469280,
      "ev_ebitda_ttm": {
        "value": 26.9,
        "vs_5y": "near_5y_high",
        "z_5y": 1.34
      },
      "fcf_yield_pct": 3.01,
      "market_cap_usd": 4286945469280,
      "pb": {
        "value": 40.26,
        "vs_5y": "below_5y_median",
        "z_5y": -0.67
      },
      "pe_ttm": {
        "value": 35.29,
        "vs_5y": "near_5y_high",
        "z_5y": 1.18
      },
      "ps_ttm": {
        "value": 9.5,
        "vs_5y": "near_5y_high",
        "z_5y": 1.62
      },
      "share_count_basis": "listed_security",
      "shares_outstanding": 14687356000,
      "ttm_eps_diluted": 8.27,
      "ttm_net_income_usd": 122575000000,
      "ttm_revenue_usd": 451442000000
    },
    "industry": "Electronic Computers",
    "market_status": "open",
    "name": "Apple Inc.",
    "performance": {
      "pct_1d": -1.27,
      "pct_1m": -2.34,
      "pct_1y": 47.11,
      "pct_3m": 16.8,
      "pct_3y": 63.09,
      "pct_5d": -5.03,
      "pct_ytd": 7.9,
      "vs_sector_pct_1y": -6.21,
      "vs_spy_pct_1m": -2.28,
      "vs_spy_pct_1y": 23.02,
      "vs_spy_pct_ytd": -0.39
    },
    "quote": {
      "change_abs": -3.75,
      "change_pct": -1.27,
      "day_high": 297.17,
      "day_low": 290.61,
      "day_open": 296.65,
      "previous_close": 295.63,
      "price": 291.88,
      "volume": 42275511
    },
    "range_52w": {
      "drawdown_from_high_pct": -8.04,
      "high": 317.4,
      "low": 194.3,
      "position_pct": 79.3
    },
    "sector": "Information Technology",
    "sic": "3571",
    "sic_description": "Electronic Computers",
    "symbol": "AAPL"
  },
  "schema_version": "2026-06-17.6"
}

Authorizations

X-API-Key
string
header
required

StockContext API key. Keys start with sctx_ and are sent on every REST request.

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
StockSnapshotData · object
required

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

schema_version
string
required

StockContext response schema version for this 200 payload.