Skip to main content
GET
/
stocks
/
{symbol}
/
ratios
Financial Ratios
curl --request GET \
  --url https://api.tradewatch.io/stocks/{symbol}/ratios \
  --header 'api-key: <api-key>'
{
  "data": "<unknown>",
  "symbol": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://tradewatch.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
header
required

Authentication via API key header

Path Parameters

symbol
string
required

Stock ticker symbol (e.g., 'AAPL', 'TSLA').

Query Parameters

group
string
default:all

Ratio group to return. One of: valuation (P/E, EV/EBITDA, P/B), profitability (ROE, ROA, net/gross margins), liquidity (current ratio, quick ratio, cash ratio), leverage (debt-to-equity, interest coverage), ttm (trailing twelve months), dupont (DuPont decomposition of ROE), or all to return every group (default: all). Ignored when name is provided.

name
string | null

Name of a specific ratio to retrieve (e.g., pe_ratio, roe, current_ratio). When provided, overrides the group parameter and returns a single ratio.

Response

Successful Response

data
any

Endpoint-specific response payload. Structure varies by endpoint and parameters.

symbol
string | null

Stock ticker symbol the data relates to (e.g., 'AAPL', 'TSLA'). Null for market-wide endpoints.