Skip to main content
POST
/
api
/
morningstar
/
quotes
/
rating
/morningstar/quotes/rating
curl --request POST \
  --url https://api.anysite.io/api/morningstar/quotes/rating \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@morningstar_rating",
    "performance_id": "<string>",
    "company_id": "<string>",
    "ticker": "<string>",
    "name": "<string>",
    "exchange": "<string>",
    "investment_type": "<string>",
    "medalist_rating": "<string>",
    "medalist_rating_as_of_date": "<string>",
    "has_company_report": true,
    "has_summary_report": true,
    "has_mir_report": true
  }
]

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:

"VTSAX"

"AAPL"

"SPY"

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_rating
performance_id
string | null
company_id
string | null
ticker
string | null
name
string | null
exchange
string | null
investment_type
string | null
medalist_rating
string | null
medalist_rating_as_of_date
string | null
has_company_report
boolean | null
has_summary_report
boolean | null
has_mir_report
boolean | null