getRatingsSnapshot
Assess a company's financial health by retrieving key financial ratings and performance metrics for any stock symbol, enabling data-driven investment decisions.
Instructions
Quickly assess the financial health and performance of companies with the FMP Ratings Snapshot API. This API provides a comprehensive snapshot of financial ratings for stock symbols in our database, based on various key financial ratios.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional limit on number of results (default: 1) | |
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Optional limit on number of results (default: 1)",
"type": "number"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}