Fundamental Metrics
Retrieve normalized research metrics for a symbol using the latest available TTM or annual financial period.
Use this endpoint when you want research-ready quality, efficiency, leverage, liquidity, and payout metrics without recomputing them from raw statements.
Endpoint
GET /stocks/{symbol}/fundamental-metrics
Test request
/stocks/AAPL/fundamental-metrics
Send a request to view the response.
Authentication
Required.
Authorization: Bearer <your_api_key>
Path Parameters
symbol: ticker or symbol to resolve
What The Endpoint Is Good For
Use fundamental-metrics when you need to:
- screen stocks by quality or capital efficiency
- compare leverage and liquidity across companies
- feed AI-agent research prompts with normalized ratios
- avoid rebuilding the same formula layer on the client side
Response
Returns:
metadatametrics
metadata includes:
symbolas_of_dateperiod_typecurrencycalculation_version
metrics includes:
gross_marginoperating_marginnet_marginfcf_marginebit_marginebitda_marginroicroceroeroacroicasset_turnoverinventory_turnoverreceivables_turnoverdebt_to_equitynet_debt_to_ebitdainterest_coveragecurrent_ratioquick_ratiocash_conversion_ratioshareholder_yieldbuyback_yielddividend_yield_ttm
Response Notes
- The imported snapshot currently prefers the latest available
ttmfinancial period and falls back to the latest annual period if needed. - Metrics are materialized during import and served from a stored snapshot, so research clients and agents do not need to repeat the same calculations.
- Some metrics may be unavailable for certain securities or sectors if the necessary denominator fields are missing.
calculation_versionis included so downstream systems can track methodology changes over time.
Common Workflow
- Resolve the symbol with Search if needed.
- Call
fundamental-metricsfor normalized research ratios. - Use Quote for current trading context.
- Use statement endpoints if you need to inspect the raw underlying fields.
Example Request
curl -H "Authorization: Bearer $your_api_key" \
"https://api.apifinance.ai/stocks/AAPL/fundamental-metrics"
Related Endpoints
- Quote for latest market snapshot
- Income statement for raw income fields
- Balance sheet for raw balance-sheet fields
- Cash flow statement for raw cash-flow fields
Next step
Run this endpoint with your own API key
Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.