Skip to main content
GET
/
financial-metrics
Get financial metrics
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/financial-metrics \
  --header 'Authorization: Bearer <token>'
{
  "ticker": "<string>",
  "market_cap": 123,
  "enterprise_value": 123,
  "price_to_earnings_ratio": 123,
  "price_to_book_ratio": 123,
  "price_to_sales_ratio": 123,
  "enterprise_value_to_ebitda_ratio": 123,
  "enterprise_value_to_revenue_ratio": 123,
  "free_cash_flow_yield": 123,
  "peg_ratio": 123,
  "gross_margin": 123,
  "operating_margin": 123,
  "net_margin": 123,
  "return_on_equity": 123,
  "return_on_assets": 123,
  "return_on_invested_capital": 123,
  "asset_turnover": 123,
  "inventory_turnover": 123,
  "receivables_turnover": 123,
  "days_sales_outstanding": 123,
  "operating_cycle": 123,
  "working_capital_turnover": 123,
  "current_ratio": 123,
  "quick_ratio": 123,
  "cash_ratio": 123,
  "operating_cash_flow_ratio": 123,
  "debt_to_equity": 123,
  "debt_to_assets": 123,
  "interest_coverage": 123,
  "revenue_growth": 123,
  "earnings_growth": 123,
  "book_value_growth": 123,
  "earnings_per_share_growth": 123,
  "free_cash_flow_growth": 123,
  "operating_income_growth": 123,
  "ebitda_growth": 123,
  "payout_ratio": 123,
  "earnings_per_share": 123,
  "book_value_per_share": 123,
  "free_cash_flow_per_share": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string

The ticker symbol of the company. Required if cik is not provided.

cik
string

The Central Index Key (CIK) of the company. Can be used instead of ticker.

period
enum<string>
required

The time period for the financial data.

Available options:
annual,
quarterly,
ttm
limit
integer

The maximum number of results to return.

report_period
string<date>

Filter by exact report period date in YYYY-MM-DD format.

report_period_gte
string<date>

Filter by report period greater than or equal to date in YYYY-MM-DD format.

report_period_lte
string<date>

Filter by report period less than or equal to date in YYYY-MM-DD format.

report_period_gt
string<date>

Filter by report period greater than date in YYYY-MM-DD format.

report_period_lt
string<date>

Filter by report period less than date in YYYY-MM-DD format.

Response

The historical financial metrics and ratios for a ticker

ticker
string

The ticker symbol of the company.

market_cap
number

The market capitalization of the company.

enterprise_value
number

The total value of the company (market cap + debt - cash).

price_to_earnings_ratio
number

Price to earnings ratio.

price_to_book_ratio
number

Price to book ratio.

price_to_sales_ratio
number

Price to sales ratio.

enterprise_value_to_ebitda_ratio
number

Enterprise value to EBITDA ratio.

enterprise_value_to_revenue_ratio
number

Enterprise value to revenue ratio.

free_cash_flow_yield
number

Free cash flow yield.

peg_ratio
number

Price to earnings growth ratio.

gross_margin
number

Gross profit as a percentage of revenue.

operating_margin
number

Operating income as a percentage of revenue.

net_margin
number

Net income as a percentage of revenue.

return_on_equity
number

Net income as a percentage of shareholders' equity.

return_on_assets
number

Net income as a percentage of total assets.

return_on_invested_capital
number

Net operating profit after taxes as a percentage of invested capital.

asset_turnover
number

Revenue divided by average total assets.

inventory_turnover
number

Cost of goods sold divided by average inventory.

receivables_turnover
number

Revenue divided by average accounts receivable.

days_sales_outstanding
number

Average accounts receivable divided by revenue over the period.

operating_cycle
number

Inventory turnover + receivables turnover.

working_capital_turnover
number

Revenue divided by average working capital.

current_ratio
number

Current assets divided by current liabilities.

quick_ratio
number

Quick assets divided by current liabilities.

cash_ratio
number

Cash and cash equivalents divided by current liabilities.

operating_cash_flow_ratio
number

Operating cash flow divided by current liabilities.

debt_to_equity
number

Total debt divided by shareholders' equity.

debt_to_assets
number

Total debt divided by total assets.

interest_coverage
number

EBIT divided by interest expense.

revenue_growth
number

Year-over-year growth in revenue.

earnings_growth
number

Year-over-year growth in earnings.

book_value_growth
number

Year-over-year growth in book value.

earnings_per_share_growth
number

Growth in earnings per share over the period.

free_cash_flow_growth
number

Growth in free cash flow over the period.

operating_income_growth
number

Growth in operating income over the period.

ebitda_growth
number

Growth in EBITDA over the period.

payout_ratio
number

Dividends paid as a percentage of net income.

earnings_per_share
number

Net income divided by weighted average shares outstanding.

book_value_per_share
number

Shareholders' equity divided by shares outstanding.

free_cash_flow_per_share
number

Free cash flow divided by shares outstanding.