> ## 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.

# benzinga-fundamentals

> Benzinga Fundamentals

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

## Tools

| Tool                                                                                                | Description                                                                                                                                                                               |
| --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`benzinga_fundamentals_get_1`](#benzinga_fundamentals_get_1)                                       | Get valuation ratios, earning ratios, operation ratios, balance sheet                                                                                                                     |
| [`benzinga_fundamentals_get_2`](#benzinga_fundamentals_get_2)                                       | Fundamental data                                                                                                                                                                          |
| [`benzinga_fundamentals_get_alpha_beta`](#benzinga_fundamentals_get_alpha_beta)                     | Get an alpha-beta result for the company.                                                                                                                                                 |
| [`benzinga_fundamentals_get_asset_classification`](#benzinga_fundamentals_get_asset_classification) | Get share class profile history with market cap and enterprise value.                                                                                                                     |
| [`benzinga_fundamentals_get_balance_sheet`](#benzinga_fundamentals_get_balance_sheet)               | Balance sheet                                                                                                                                                                             |
| [`benzinga_fundamentals_get_cash_flow`](#benzinga_fundamentals_get_cash_flow)                       | Cashflow                                                                                                                                                                                  |
| [`benzinga_fundamentals_get_company`](#benzinga_fundamentals_get_company)                           | Get basic company information.                                                                                                                                                            |
| [`benzinga_fundamentals_get_company_profile`](#benzinga_fundamentals_get_company_profile)           | Get company meta-data.                                                                                                                                                                    |
| [`benzinga_fundamentals_get_derived`](#benzinga_fundamentals_get_derived)                           | Derived figures & ratios                                                                                                                                                                  |
| [`benzinga_fundamentals_get_earning_ratios`](#benzinga_fundamentals_get_earning_ratios)             | Returns the earning ratios.                                                                                                                                                               |
| [`benzinga_fundamentals_get_earning_ratios_1`](#benzinga_fundamentals_get_earning_ratios_1)         | Returns the earning ratios                                                                                                                                                                |
| [`benzinga_fundamentals_get_earning_reports`](#benzinga_fundamentals_get_earning_reports)           | Get detailed earning reports for company.                                                                                                                                                 |
| [`benzinga_fundamentals_get_financials`](#benzinga_fundamentals_get_financials)                     | Get the balance sheet and cash-flow statement for a company.                                                                                                                              |
| [`benzinga_fundamentals_get_financials_1`](#benzinga_fundamentals_get_financials_1)                 | Get the balance sheet and cashflow statement for a company. Although symbols, and cik are technically optional, if no parameters are included with the response, the result will be empty |
| [`benzinga_fundamentals_get_fundamentals`](#benzinga_fundamentals_get_fundamentals)                 | Get all of fundamentals data such as valuation ratios, earning ratios, operation ratios, balance sheet, share class, alpha beta and asset classification.                                 |
| [`benzinga_fundamentals_get_income_statement`](#benzinga_fundamentals_get_income_statement)         | Income statement                                                                                                                                                                          |
| [`benzinga_fundamentals_get_operation_ratios`](#benzinga_fundamentals_get_operation_ratios)         | Returns the operation ratios.                                                                                                                                                             |
| [`benzinga_fundamentals_get_operation_ratios_1`](#benzinga_fundamentals_get_operation_ratios_1)     | Returns the operation ratios                                                                                                                                                              |
| [`benzinga_fundamentals_get_share_class`](#benzinga_fundamentals_get_share_class)                   | Get share class meta data for company.                                                                                                                                                    |
| [`benzinga_fundamentals_get_share_class_profile`](#benzinga_fundamentals_get_share_class_profile)   | Get share class profile history with market cap and enterprise value.                                                                                                                     |
| [`benzinga_fundamentals_get_share_price_ratios`](#benzinga_fundamentals_get_share_price_ratios)     | Share price ratios                                                                                                                                                                        |
| [`benzinga_fundamentals_get_valuation_ratios`](#benzinga_fundamentals_get_valuation_ratios)         | Returns the valuation ratios.                                                                                                                                                             |
| [`benzinga_fundamentals_get_valuation_ratios_1`](#benzinga_fundamentals_get_valuation_ratios_1)     | Returns the valuation ratios                                                                                                                                                              |

***

## benzinga\_fundamentals\_get\_1

Get valuation ratios, earning ratios, operation ratios, balance sheet

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_2

Fundamental data

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return. (Max. 5)                                                                                       |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return. (Max. 5)"
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_alpha\_beta

Get an alpha-beta result for the company.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_asset\_classification

Get share class profile history with market cap and enterprise value.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_balance\_sheet

Balance sheet

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return.                                                                                                |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return."
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_cash\_flow

Cashflow

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return.                                                                                                |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return."
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_company

Get basic company information.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_company\_profile

Get company meta-data.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_derived

Derived figures & ratios

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return.                                                                                                |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return."
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_earning\_ratios

Returns the earning ratios.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_earning\_ratios\_1

Returns the earning ratios

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_earning\_reports

Get detailed earning reports for company.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_financials

Get the balance sheet and cash-flow statement for a company.

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                                                              |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols`    | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`       | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `period`     | string | No       | —       | Specifies the time period of the returned results                                        |
| `reportType` | string | No       | —       | TTM, A (as originally reported), R (restated). P (Preliminary anouncements)              |
| `cik`        | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "period": {
        "type": "string",
        "description": "Specifies the time period of the returned results",
        "enum": [
          "3M",
          "6M",
          "9M",
          "12M",
          "1Y",
          "ALL",
          "TTM"
        ]
      },
      "reportType": {
        "type": "string",
        "description": "TTM, A (as originally reported), R (restated). P (Preliminary anouncements)",
        "enum": [
          "TTM",
          "A",
          "R",
          "P"
        ]
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_financials\_1

Get the balance sheet and cashflow statement for a company. Although symbols, and cik are technically optional, if no parameters are included with the response, the result will be empty

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                                                              |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols`    | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`        | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |
| `asOf`       | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `period`     | string | No       | —       | Specifies the time period of the returned results                                        |
| `reportType` | string | No       | —       | TTM, A (as originally reported), R (restated). P (Preliminary anouncements)              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "period": {
        "type": "string",
        "description": "Specifies the time period of the returned results",
        "enum": [
          "3M",
          "6M",
          "9M",
          "12M",
          "1Y",
          "ALL",
          "TTM"
        ]
      },
      "reportType": {
        "type": "string",
        "description": "TTM, A (as originally reported), R (restated). P (Preliminary anouncements)",
        "enum": [
          "TTM",
          "A",
          "R",
          "P"
        ]
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_fundamentals

Get all of fundamentals data such as valuation ratios, earning ratios, operation ratios, balance sheet, share class, alpha beta and asset classification.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return. A max of 200 symbols per request is supported. |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter                                                          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return                                                      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return. A max of 200 symbols per request is supported."
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_income\_statement

Income statement

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return.                                                                                                |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return."
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_operation\_ratios

Returns the operation ratios.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_operation\_ratios\_1

Returns the operation ratios

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_share\_class

Get share class meta data for company.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_share\_class\_profile

Get share class profile history with market cap and enterprise value.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_share\_price\_ratios

Share price ratios

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return.                                                                                                |
| `date`    | string | No       | —       | Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`. |
| `from`    | string | No       | —       | Date to query from point in time.                                                                                                                                                        |
| `to`      | string | No       | —       | Date to query to point in time.                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return."
      },
      "date": {
        "type": "string",
        "description": "Returns the most recent results for dates less than or equal to the date specified in this parameter. Use `latest` to retrieve the most recent results. The default setting is `latest`."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_valuation\_ratios

Returns the valuation ratios.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_fundamentals\_get\_valuation\_ratios\_1

Returns the valuation ratios

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                              |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more stock ticker symbol in comma separated list specifies company data to return |
| `cik`     | string | No       | —       | One or more cik identifier in comma separated list specifies company data to return      |
| `asOf`    | string | No       | —       | Return results for dates greater than or equal date specified in this parameter          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "One or more stock ticker symbol in comma separated list specifies company data to return"
      },
      "cik": {
        "type": "string",
        "description": "One or more cik identifier in comma separated list specifies company data to return"
      },
      "asOf": {
        "type": "string",
        "description": "Return results for dates greater than or equal date specified in this parameter"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
