Skip to content

GET /v1/statistics

GET /v1/statistics

Returns a snapshot of the most-watched fundamental ratios and figures for a single symbol. Roughly equivalent to a “key statistics” page on a retail finance site. See fundamentals for refresh policy and source priority.

Request

GET /v1/statistics?symbol=AAPL HTTP/1.1
Host: api.oneapi.finance
Authorization: Bearer oa_live_<your_key>

Query parameters

ParamTypeRequiredNotes
symbolstringyesSingle symbol.
exchangestringnoDisambiguate cross-listed tickers.

Response

{
"marketCap": 2750000000000,
"enterpriseValue": 2810000000000,
"trailingPe": 28.4,
"forwardPe": 26.1,
"pegRatio": 2.1,
"priceToSales": 7.2,
"priceToBook": 42.5,
"profitMargin": 0.252,
"operatingMargin": 0.298,
"roe": 1.452,
"roa": 0.218,
"revenueTtm": 385000000000,
"eps": 6.18,
"ebitda": 130000000000,
"beta": 1.27,
"fiftyTwoWeekHigh": 198.23,
"fiftyTwoWeekLow": 124.17,
"fiftyDayMa": 174.21,
"twoHundredDayMa": 168.45,
"sharesOutstanding": 15670000000,
"dividendYield": 0.0055,
"payoutRatio": 0.155,
"exDividendDate": "2026-02-09"
}

Field reference

Grouped by category. All fields are nullable; small caps and pre-IPO names typically have many null values. The wire-format model is oneapi_core.responses.statistics.StatisticsResponse.

Valuation

FieldTypeNotes
marketCapnumber | nullIn source currency. price × sharesOutstanding.
enterpriseValuenumber | nullmarketCap + debt - cash.
trailingPenumber | nullprice / EPS_TTM. Negative when EPS is negative.
forwardPenumber | nullBased on consensus next-12-month EPS.
pegRationumber | nullForward P/E divided by 5-year forecast growth.
priceToSalesnumber | nullmarketCap / revenueTtm.
priceToBooknumber | nullmarketCap / book value.

Profitability

FieldTypeNotes
profitMarginnumber | nullTTM net income / TTM revenue. Fractional rate (0.252 = 25.2%).
operatingMarginnumber | nullTTM operating income / TTM revenue.
roenumber | nullTTM net income / average shareholders’ equity.
roanumber | nullTTM net income / average assets.
revenueTtmnumber | nullTrailing twelve months revenue, source currency.
epsnumber | nullDiluted EPS, TTM.
ebitdanumber | nullEarnings before interest, taxes, depreciation, amortization. TTM, source currency.

Stock statistics

FieldTypeNotes
betanumber | null5-year monthly returns vs S&P 500.
fiftyTwoWeekHighnumber | null
fiftyTwoWeekLownumber | null
fiftyDayManumber | nullSimple moving average.
twoHundredDayManumber | nullSimple moving average.
sharesOutstandingnumber | nullMost recent reported figure.

Dividends

FieldTypeNotes
dividendYieldnumber | nullTrailing 12-month dividends / price. Fractional rate (0.0055 = 0.55%).
payoutRationumber | nullTTM dividends / TTM EPS.
exDividendDatestring | nullISO date of most recent ex-dividend.

Examples

Terminal window
curl -H "Authorization: Bearer oa_live_..." \
"https://api.oneapi.finance/v1/statistics?symbol=AAPL"

Errors

StatuscodeWhen
401unauthenticatedMissing or invalid API key.
404not_foundSymbol unknown.
429rate_limitSee rate limits.
502upstream_failureAll sources failed.

See also