---
title: "Income statement"
method: GET
path: "/income_statement"
tags: ["fundamentals"]
---

# Income statement

`GET /income_statement`

The income statement endpoint provides detailed financial data on a company's income statement, including revenues, expenses, and net income for specified periods, either annually or quarterly. This endpoint is essential for retrieving comprehensive financial performance metrics of a company, allowing users to access historical and current financial results.

## Query parameters

- `symbol` string
- `figi` string
- `isin` string
- `cusip` string
- `exchange` string
- `mic_code` string
- `country` string
- `period` 'annual' | 'quarterly'
- `start_date` string
- `end_date` string
- `outputsize` integer

## Response `200`

- object
  - `meta` object, required — Meta information about the instrument
    - `symbol` string, required — Symbol ticker of the instrument
    - `name` string, required — Name of the company
    - `currency` string, required — Currency of the instrument according to the ISO 4217 standard
    - `exchange` string, required — Exchange where the instrument is traded
    - `mic_code` string, required — Market identifier code (MIC) under ISO 10383 standard
    - `exchange_timezone` string, required — Exchange timezone
    - `period` string, required — Period of the income statement (Annual or Quarterly)
  - `income_statement` IncomeStatementBlock[] — Income statement data
    - `fiscal_date` string, required — Date of fiscal period ending
    - `quarter` integer — Fiscal quarter. Visible when `&period=quarterly`
    - `year` integer — Fiscal year
    - `sales` integer — Refers to total reported revenue
    - `cost_of_goods` integer — Refers to cost of revenue
    - `gross_profit` integer — Refers to net gross profit: `sales` - `cost_of_goods`
    - `operating_expense` object — Operating expense details
      - `research_and_development` integer — Refers to research & development (R&D) expenses
      - `selling_general_and_administrative` integer — Refers to selling, general and administrative (SG&A) expenses
      - `other_operating_expenses` integer — Refers to other operating expenses
    - `operating_income` integer — Refers to net operating income: `gross_profit` - `research_and_development` - `selling_general_and_administrative`
    - `non_operating_interest` object — Non-operating interest details
      - `income` integer — Refers to non-operating interest income
      - `expense` integer — Refers to non-operating interest expense
    - `other_income_expense` integer — Refers to other incomes or expenses
    - `pretax_income` integer — Refers to earnings before tax: `operating_income` + `net_non_operating_interest` - `other_income_expense`
    - `income_tax` integer — Refers to a tax provision
    - `net_income` integer — Refers to net income: `pretax_income` - `income_tax`
    - `eps_basic` number, double — Refers to earnings per share (EPS)
    - `eps_diluted` number, double — Refers to diluted earnings per share (EPS)
    - `basic_shares_outstanding` integer — Refers for the shares outstanding held by all its shareholders
    - `diluted_shares_outstanding` integer — Refers to the total number of shares a company would have if all dilutive securities were exercised and converted into shares
    - `ebit` integer — Refers to earnings before interest and taxes (EBIT) measure
    - `ebitda` integer — Refers to EBITDA (earnings before interest, taxes, depreciation, and amortization) measure
    - `net_income_continuous_operations` integer — Refers to the after-tax earnings that a business has generated from its operational activities
    - `minority_interests` integer — Refers to amount of minority interests paid out
    - `preferred_stock_dividends` integer — Refers to dividend that is allocated to and paid on a company's preferred shares

## Other responses

- `400`
- `401`
- `403`
- `404`
- `414`
- `429`
- `500`

---

[API](https://skmtc.net/twelvedata/apis/twelve-data-api.md) · [All operations](https://skmtc.net/twelvedata/apis/twelve-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/twelvedata/twelve-data-api/revisions/c4a12725cdb5/schema)
