> ## 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-market-data

> Benzinga Market Data

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

## Tools

| Tool                                                                                                | Description                                 |
| --------------------------------------------------------------------------------------------------- | ------------------------------------------- |
| [`benzinga_market_data_get_bars`](#benzinga_market_data_get_bars)                                   | Get the delayed quotes.                     |
| [`benzinga_market_data_get_movers`](#benzinga_market_data_get_movers)                               | Returns market movers                       |
| [`benzinga_market_data_get_quote_delayed`](#benzinga_market_data_get_quote_delayed)                 | Get the delayed quotes.                     |
| [`benzinga_market_data_get_quote_delayed_1`](#benzinga_market_data_get_quote_delayed_1)             | Get the delayed quotes.                     |
| [`benzinga_market_data_get_shortinterest`](#benzinga_market_data_get_shortinterest)                 | Get short interest data                     |
| [`benzinga_market_data_get_trending_tickers`](#benzinga_market_data_get_trending_tickers)           | Get per-ticker trend metrics (time buckets) |
| [`benzinga_market_data_get_trending_tickers_list`](#benzinga_market_data_get_trending_tickers_list) | Get trending tickers (aggregated list)      |

***

## benzinga\_market\_data\_get\_bars

Get the delayed quotes.

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                                                                                                                                                                                                                                                                            |
| ---------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `symbols`  | string | No       | —       | One or more comma separated symbols to specify companies to get data for.                                                                                                                                                                                                                              |
| `from`     | string | No       | —       | Date to query from point in time. Sorted by published date. If "YTD" Sets from to the first trading day of the current year.  Some other valid values: "1MONTH", "1m", "1M" (all meaning "1 month  from today"), "1d", "1D" (both meaning "1 day from today").                                         |
| `to`       | string | No       | —       | Date to query to point in time. Sorted by published date.                                                                                                                                                                                                                                              |
| `interval` | string | No       | —       | The candle intervals to use, i.e., 5 minute bars, daily bars, etc. Some valid values: 1MONTH, 1W, 1D, 1H (1 hour), 2H, 3H, 4H, 5M (5 minutes), 10M, 15M, 30M. Defaults to an appropriate value based on the period of data requested: i.e., 5 minutes bars if less than 5 days, daily bars if greater. |

<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 comma separated symbols to specify companies to get data for."
      },
      "from": {
        "type": "string",
        "description": "Date to query from point in time. Sorted by published date. If \"YTD\" Sets from to the first trading day of the current year.  Some other valid values: \"1MONTH\", \"1m\", \"1M\" (all meaning \"1 month  from today\"), \"1d\", \"1D\" (both meaning \"1 day from today\")."
      },
      "to": {
        "type": "string",
        "description": "Date to query to point in time. Sorted by published date."
      },
      "interval": {
        "type": "string",
        "description": "The candle intervals to use, i.e., 5 minute bars, daily bars, etc. Some valid values: 1MONTH, 1W, 1D, 1H (1 hour), 2H, 3H, 4H, 5M (5 minutes), 10M, 15M, 30M. Defaults to an appropriate value based on the period of data requested: i.e., 5 minutes bars if less than 5 days, daily bars if greater."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_movers

Returns market movers

**Parameters:**

| Parameter       | Type    | Required | Default | Description                                                                                                                                                                                                                           |
| --------------- | ------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `maxResults`    | integer | No       | —       | Max numbers of gainers/losers to return. Limit 1000.                                                                                                                                                                                  |
| `from`          | string  | No       | —       | From session or timestamp. \* yyyy-mm-dd \* yyyy-mm-ddThh:mm:ii:ss \* 1d, -1w, -1y, YTD                                                                                                                                               |
| `to`            | string  | No       | —       | To session or timestamp. \* yyyy-mm-dd \* yyyy-mm-ddThh:mm:ii:ss                                                                                                                                                                      |
| `session`       | string  | No       | —       | The market session to report for. PRE\_MARKET and AFTER\_MARKET will return movers only for the one session. Multi-day movers always use official regular session closing prices. REGULAR is default.                                 |
| `screenerQuery` | string  | No       | —       | Filters movers by screener query. A screener query is a list of conditions separated by a semicolon. Some examples \* marketcap\_gt\_1b \* close\_gt\_5 \* sector\_in\_technology,healthcare \* marketcap\_gt\_300m;marketcap\_lt\_2b |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "maxResults": {
        "type": "integer",
        "description": "Max numbers of gainers/losers to return. Limit 1000."
      },
      "from": {
        "type": "string",
        "description": "From session or timestamp. * yyyy-mm-dd * yyyy-mm-ddThh:mm:ii:ss * 1d, -1w, -1y, YTD"
      },
      "to": {
        "type": "string",
        "description": "To session or timestamp. * yyyy-mm-dd * yyyy-mm-ddThh:mm:ii:ss"
      },
      "session": {
        "type": "string",
        "description": "The market session to report for. PRE_MARKET and AFTER_MARKET will return movers only for the one session. Multi-day movers always use official regular session closing prices. REGULAR is default.",
        "enum": [
          "REGULAR",
          "PRE_MARKET",
          "AFTER_MARKET"
        ]
      },
      "screenerQuery": {
        "type": "string",
        "description": "Filters movers by screener query. A screener query is a list of conditions separated by a semicolon. Some examples * marketcap_gt_1b * close_gt_5 * sector_in_technology,healthcare * marketcap_gt_300m;marketcap_lt_2b"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_quote\_delayed

Get the delayed quotes.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                       |
| --------- | ------ | -------- | ------- | --------------------------------------------------------------------------------- |
| `symbols` | string | No       | —       | One or more comma separated symbols to specify companies to get data for.         |
| `isin`    | string | No       | —       | One or more comma separated isin symbols to specify companies to get data for.    |
| `cik`     | string | No       | —       | One or more comma separated cik identifiers to specify companies to get data for. |

<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 comma separated symbols to specify companies to get data for."
      },
      "isin": {
        "type": "string",
        "description": "One or more comma separated isin symbols to specify companies to get data for."
      },
      "cik": {
        "type": "string",
        "description": "One or more comma separated cik identifiers to specify companies to get data for."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_quote\_delayed\_1

Get the delayed quotes.

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                       |
| --------- | ------ | -------- | ------- | --------------------------------------------------------------------------------- |
| `symbols` | string | Yes      | —       | One or more comma separated symbols to specify companies to get data for.         |
| `isin`    | string | No       | —       | One or more comma separated isin symbols to specify companies to get data for.    |
| `cik`     | string | No       | —       | One or more comma separated cik identifiers to specify companies to get data for. |

<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 comma separated symbols to specify companies to get data for."
      },
      "isin": {
        "type": "string",
        "description": "One or more comma separated isin symbols to specify companies to get data for."
      },
      "cik": {
        "type": "string",
        "description": "One or more comma separated cik identifiers to specify companies to get data for."
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_shortinterest

Get short interest data

**Parameters:**

| Parameter     | Type    | Required | Default | Description                                                           |
| ------------- | ------- | -------- | ------- | --------------------------------------------------------------------- |
| `symbols`     | string  | Yes      | —       | One or more comma-separated ticker symbols (e.g., TSLA,AAPL)          |
| `finraReport` | boolean | No       | —       | If true, includes additional FINRA-related short interest data.       |
| `page`        | integer | No       | —       | Page number for paginated results (starts from 0).                    |
| `pageSize`    | integer | No       | —       | Number of results per page.                                           |
| `from`        | string  | No       | —       | The start date for querying short interest data (format: YYYY-MM-DD). |
| `to`          | string  | No       | —       | The end date for querying short interest data (format: YYYY-MM-DD).   |

<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 comma-separated ticker symbols (e.g., TSLA,AAPL)"
      },
      "finraReport": {
        "type": "boolean",
        "description": "If true, includes additional FINRA-related short interest data."
      },
      "page": {
        "type": "integer",
        "description": "Page number for paginated results (starts from 0)."
      },
      "pageSize": {
        "type": "integer",
        "description": "Number of results per page."
      },
      "from": {
        "type": "string",
        "description": "The start date for querying short interest data (format: YYYY-MM-DD)."
      },
      "to": {
        "type": "string",
        "description": "The end date for querying short interest data (format: YYYY-MM-DD)."
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_trending\_tickers

Get per-ticker trend metrics (time buckets)

**Parameters:**

| Parameter  | Type   | Required | Default | Description                       |
| ---------- | ------ | -------- | ------- | --------------------------------- |
| `interval` | string | No       | —       | Time-bucket interval for metrics. |
| `tickers`  | string | Yes      | —       | Comma-separated list of tickers.  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "interval": {
        "type": "string",
        "description": "Time-bucket interval for metrics.",
        "enum": [
          "10m",
          "1h",
          "1d"
        ]
      },
      "tickers": {
        "type": "string",
        "description": "Comma-separated list of tickers."
      }
    },
    "required": [
      "PCID",
      "tickers"
    ]
  }
  ```
</Expandable>

***

## benzinga\_market\_data\_get\_trending\_tickers\_list

Get trending tickers (aggregated list)

**Parameters:**

| Parameter   | Type   | Required | Default | Description                                           |
| ----------- | ------ | -------- | ------- | ----------------------------------------------------- |
| `timeframe` | string | No       | —       | Aggregation window for trends.                        |
| `date_from` | string | No       | —       | Start date (inclusive) in ISO 8601 format YYYY-MM-DD. |
| `date_to`   | string | No       | —       | End date (inclusive) in ISO 8601 format YYYY-MM-DD.   |
| `time_from` | string | No       | —       | Start time (24-hour) in HH:MM.                        |
| `time_to`   | string | No       | —       | End time (24-hour) in HH:MM.                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "timeframe": {
        "type": "string",
        "description": "Aggregation window for trends.",
        "enum": [
          "10m",
          "1h",
          "1d"
        ]
      },
      "date_from": {
        "type": "string",
        "description": "Start date (inclusive) in ISO 8601 format YYYY-MM-DD."
      },
      "date_to": {
        "type": "string",
        "description": "End date (inclusive) in ISO 8601 format YYYY-MM-DD."
      },
      "time_from": {
        "type": "string",
        "description": "Start time (24-hour) in HH:MM."
      },
      "time_to": {
        "type": "string",
        "description": "End time (24-hour) in HH:MM."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
