> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# finage-fundamentals

> Finage Fundamentals - financial statements, company profiles, and economic data

**Server path:** `/finage-fundamentals` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                              | Description               |
| ------------------------------------------------------------------------------------------------- | ------------------------- |
| [`finage_fundamentals_get_balance_sheet`](#finage_fundamentals_get_balance_sheet)                 | Get balance sheet         |
| [`finage_fundamentals_get_cash_flow_statement`](#finage_fundamentals_get_cash_flow_statement)     | Get cash flow statement   |
| [`finage_fundamentals_get_company_profile`](#finage_fundamentals_get_company_profile)             | Get company profile       |
| [`finage_fundamentals_get_economic_calendar`](#finage_fundamentals_get_economic_calendar)         | Get economic calendar     |
| [`finage_fundamentals_get_etf_sector_weightings`](#finage_fundamentals_get_etf_sector_weightings) | Get ETF sector weightings |
| [`finage_fundamentals_get_income_statement`](#finage_fundamentals_get_income_statement)           | Get income statement      |
| [`finage_fundamentals_get_institutional_holders`](#finage_fundamentals_get_institutional_holders) | Get institutional holders |

***

## finage\_fundamentals\_get\_balance\_sheet

Get balance sheet

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `symbol`  | string | Yes      | —       | Stock ticker symbol (e.g. AAPL)       |
| `period`  | string | No       | —       | Reporting period: annual or quarterly |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      },
      "period": {
        "type": "string",
        "description": "Reporting period: annual or quarterly",
        "enum": [
          "annual",
          "quarterly"
        ]
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_cash\_flow\_statement

Get cash flow statement

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `symbol`  | string | Yes      | —       | Stock ticker symbol (e.g. AAPL)       |
| `period`  | string | No       | —       | Reporting period: annual or quarterly |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      },
      "period": {
        "type": "string",
        "description": "Reporting period: annual or quarterly",
        "enum": [
          "annual",
          "quarterly"
        ]
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_company\_profile

Get company profile

**Parameters:**

| Parameter | Type   | Required | Default | Description                     |
| --------- | ------ | -------- | ------- | ------------------------------- |
| `symbol`  | string | Yes      | —       | Stock ticker symbol (e.g. AAPL) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_economic\_calendar

Get economic calendar

**Parameters:**

| Parameter | Type   | Required | Default | Description                     |
| --------- | ------ | -------- | ------- | ------------------------------- |
| `from`    | string | No       | —       | Start date in YYYY-MM-DD format |
| `to`      | string | No       | —       | End date in YYYY-MM-DD format   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "from": {
        "type": "string",
        "description": "Start date in YYYY-MM-DD format"
      },
      "to": {
        "type": "string",
        "description": "End date in YYYY-MM-DD format"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_etf\_sector\_weightings

Get ETF sector weightings

**Parameters:**

| Parameter | Type   | Required | Default | Description                  |
| --------- | ------ | -------- | ------- | ---------------------------- |
| `symbol`  | string | Yes      | —       | ETF ticker symbol (e.g. SPY) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "ETF ticker symbol (e.g. SPY)"
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_income\_statement

Get income statement

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `symbol`  | string | Yes      | —       | Stock ticker symbol (e.g. AAPL)       |
| `period`  | string | No       | —       | Reporting period: annual or quarterly |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      },
      "period": {
        "type": "string",
        "description": "Reporting period: annual or quarterly",
        "enum": [
          "annual",
          "quarterly"
        ]
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>

***

## finage\_fundamentals\_get\_institutional\_holders

Get institutional holders

**Parameters:**

| Parameter | Type   | Required | Default | Description                     |
| --------- | ------ | -------- | ------- | ------------------------------- |
| `symbol`  | string | Yes      | —       | Stock ticker symbol (e.g. AAPL) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbol": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      }
    },
    "required": [
      "PCID",
      "symbol"
    ]
  }
  ```
</Expandable>
