Skip to main content
POST
/
api
/
morningstar
/
quotes
/
key-metrics
/morningstar/quotes/key-metrics
curl --request POST \
  --url https://api.anysite.io/api/morningstar/quotes/key-metrics \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@morningstar_key_metrics",
    "revenue_3year_growth": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "net_income_3year_growth": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "operating_margin_ttm": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "net_margin_ttm": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "roa_ttm": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "roe_ttm": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "debt_to_equity": {
      "@type": "@morningstar_key_metric_value",
      "stock_value": 123,
      "industry_average": 123
    },
    "free_cash_flow_ttm": 123,
    "free_cash_flow_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker symbol

Minimum string length: 1
Examples:

"AAPL"

"MSFT"

"TSLA"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@morningstar_key_metrics
revenue_3year_growth
MorningstarKeyMetricValue · object
net_income_3year_growth
MorningstarKeyMetricValue · object
operating_margin_ttm
MorningstarKeyMetricValue · object
net_margin_ttm
MorningstarKeyMetricValue · object
roa_ttm
MorningstarKeyMetricValue · object
roe_ttm
MorningstarKeyMetricValue · object
debt_to_equity
MorningstarKeyMetricValue · object
free_cash_flow_ttm
number | null
free_cash_flow_date
string | null