getFinancialRatiosTTM
Analyze a company's trailing twelve-month (TTM) financial ratios, including profitability, liquidity, and efficiency metrics, by inputting its stock symbol.
Instructions
Gain access to trailing twelve-month (TTM) financial ratios with the TTM Ratios API. This API provides key performance metrics over the past year, including profitability, liquidity, and efficiency ratios.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}