getFinancialScores
Evaluate a company's financial stability using key metrics like Altman Z-Score and Piotroski Score. Input a stock symbol to assess financial health and make informed investment decisions.
Instructions
Assess a company's financial strength using the Financial Health Scores API. This API provides key metrics such as the Altman Z-Score and Piotroski Score, giving users insights into a company’s overall financial health and stability.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit on number of results (default: 100, max: 1000) | |
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Limit on number of results (default: 100, max: 1000)",
"type": "number"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}