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

# marketstack

> Stock Market Data

**Server path:** `/marketstack` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                          | Description                     |
| ----------------------------------------------------------------------------- | ------------------------------- |
| [`marketstack_get_bond_data`](#marketstack_get_bond_data)                     | Get bond price data             |
| [`marketstack_get_cik_code`](#marketstack_get_cik_code)                       | Get SEC CIK code                |
| [`marketstack_get_commodities`](#marketstack_get_commodities)                 | Get current commodity prices    |
| [`marketstack_get_commodities_history`](#marketstack_get_commodities_history) | Get historical commodity prices |
| [`marketstack_get_company_ratings`](#marketstack_get_company_ratings)         | Get company ratings             |
| [`marketstack_get_dividends`](#marketstack_get_dividends)                     | Get dividend data               |
| [`marketstack_get_end_of_day_data`](#marketstack_get_end_of_day_data)         | Get end-of-day stock data       |
| [`marketstack_get_etf_holdings`](#marketstack_get_etf_holdings)               | Get ETF holdings                |
| [`marketstack_get_index_info`](#marketstack_get_index_info)                   | Get index details               |
| [`marketstack_get_intraday_data`](#marketstack_get_intraday_data)             | Get intraday stock data         |
| [`marketstack_get_stock_price`](#marketstack_get_stock_price)                 | Get current stock price         |
| [`marketstack_get_stock_splits`](#marketstack_get_stock_splits)               | Get stock split data            |
| [`marketstack_get_ticker_info`](#marketstack_get_ticker_info)                 | Get detailed ticker information |
| [`marketstack_list_bonds`](#marketstack_list_bonds)                           | List available bonds            |
| [`marketstack_list_currencies`](#marketstack_list_currencies)                 | List supported currencies       |
| [`marketstack_list_etfs`](#marketstack_list_etfs)                             | List available ETFs             |
| [`marketstack_list_exchanges`](#marketstack_list_exchanges)                   | List stock exchanges            |
| [`marketstack_list_indexes`](#marketstack_list_indexes)                       | List stock market indexes       |
| [`marketstack_list_tickers`](#marketstack_list_tickers)                       | List all available tickers      |
| [`marketstack_list_timezones`](#marketstack_list_timezones)                   | List supported timezones        |
| [`marketstack_search_tickers`](#marketstack_search_tickers)                   | Search for tickers              |

***

## marketstack\_get\_bond\_data

Get bond price data

**Parameters:**

| Parameter   | Type    | Required | Default | Description                   |
| ----------- | ------- | -------- | ------- | ----------------------------- |
| `symbols`   | string  | Yes      | —       | Bond symbol                   |
| `date_from` | string  | No       | —       | Filter from date (YYYY-MM-DD) |
| `date_to`   | string  | No       | —       | Filter to date (YYYY-MM-DD)   |
| `limit`     | integer | No       | —       | Number of results per page    |
| `offset`    | integer | No       | —       | Pagination offset             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "Bond symbol"
      },
      "date_from": {
        "type": "string",
        "description": "Filter from date (YYYY-MM-DD)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter to date (YYYY-MM-DD)"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_cik\_code

Get SEC CIK code

**Parameters:**

| Parameter | Type   | Required | Default | Description                     |
| --------- | ------ | -------- | ------- | ------------------------------- |
| `symbols` | 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"
      },
      "symbols": {
        "type": "string",
        "description": "Stock ticker symbol (e.g. AAPL)"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_commodities

Get current commodity prices

**Parameters:**

| Parameter | Type    | Required | Default | Description                                                 |
| --------- | ------- | -------- | ------- | ----------------------------------------------------------- |
| `symbols` | string  | No       | —       | One or more commodity symbols (e.g. GOLD, SILVER, OIL\_WTI) |
| `limit`   | integer | No       | —       | Number of results per page                                  |
| `offset`  | integer | No       | —       | Pagination offset                                           |

<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 commodity symbols (e.g. GOLD, SILVER, OIL_WTI)"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_commodities\_history

Get historical commodity prices

**Parameters:**

| Parameter   | Type    | Required | Default | Description                   |
| ----------- | ------- | -------- | ------- | ----------------------------- |
| `symbols`   | string  | Yes      | —       | One or more commodity symbols |
| `date_from` | string  | No       | —       | Filter from date (YYYY-MM-DD) |
| `date_to`   | string  | No       | —       | Filter to date (YYYY-MM-DD)   |
| `sort`      | string  | No       | —       | Sort order                    |
| `limit`     | integer | No       | —       | Number of results per page    |
| `offset`    | integer | No       | —       | Pagination offset             |

<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 commodity symbols"
      },
      "date_from": {
        "type": "string",
        "description": "Filter from date (YYYY-MM-DD)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter to date (YYYY-MM-DD)"
      },
      "sort": {
        "type": "string",
        "description": "Sort order",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_company\_ratings

Get company ratings

**Parameters:**

| Parameter | Type    | Required | Default | Description                     |
| --------- | ------- | -------- | ------- | ------------------------------- |
| `symbols` | string  | Yes      | —       | Stock ticker symbol (e.g. AAPL) |
| `limit`   | integer | No       | —       | Number of results per page      |
| `offset`  | integer | No       | —       | Pagination offset               |

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

***

## marketstack\_get\_dividends

Get dividend data

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                      |
| ----------- | ------- | -------- | ------- | ------------------------------------------------ |
| `symbols`   | string  | Yes      | —       | One or more comma-separated stock ticker symbols |
| `date_from` | string  | No       | —       | Filter from date (YYYY-MM-DD)                    |
| `date_to`   | string  | No       | —       | Filter to date (YYYY-MM-DD)                      |
| `sort`      | string  | No       | —       | Sort order                                       |
| `limit`     | integer | No       | —       | Number of results per page                       |
| `offset`    | integer | No       | —       | Pagination offset                                |

<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 stock ticker symbols"
      },
      "date_from": {
        "type": "string",
        "description": "Filter from date (YYYY-MM-DD)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter to date (YYYY-MM-DD)"
      },
      "sort": {
        "type": "string",
        "description": "Sort order",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_end\_of\_day\_data

Get end-of-day stock data

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                                        |
| ----------- | ------- | -------- | ------- | ------------------------------------------------------------------ |
| `symbols`   | string  | Yes      | —       | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT) |
| `date_from` | string  | No       | —       | Filter results from this date (format: YYYY-MM-DD)                 |
| `date_to`   | string  | No       | —       | Filter results to this date (format: YYYY-MM-DD)                   |
| `exchange`  | string  | No       | —       | Filter by stock exchange MIC code (e.g. XNAS for NASDAQ)           |
| `sort`      | string  | No       | —       | Sort order for results                                             |
| `limit`     | integer | No       | —       | Number of results per page (max 1000)                              |
| `offset`    | integer | No       | —       | Pagination offset                                                  |

<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 stock ticker symbols (e.g. AAPL, MSFT)"
      },
      "date_from": {
        "type": "string",
        "description": "Filter results from this date (format: YYYY-MM-DD)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter results to this date (format: YYYY-MM-DD)"
      },
      "exchange": {
        "type": "string",
        "description": "Filter by stock exchange MIC code (e.g. XNAS for NASDAQ)"
      },
      "sort": {
        "type": "string",
        "description": "Sort order for results",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page (max 1000)"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_etf\_holdings

Get ETF holdings

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `symbols` | string  | Yes      | —       | ETF symbol (e.g. SPY)      |
| `limit`   | integer | No       | —       | Number of results per page |
| `offset`  | integer | No       | —       | Pagination offset          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "symbols": {
        "type": "string",
        "description": "ETF symbol (e.g. SPY)"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_index\_info

Get index details

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `symbols` | string | Yes      | —       | Index symbol (e.g. DJI for Dow Jones) |

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

***

## marketstack\_get\_intraday\_data

Get intraday stock data

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                                                         |
| ----------- | ------- | -------- | ------- | ----------------------------------------------------------------------------------- |
| `symbols`   | string  | Yes      | —       | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT)                  |
| `interval`  | string  | No       | —       | Data interval                                                                       |
| `date_from` | string  | No       | —       | Filter results from this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000) |
| `date_to`   | string  | No       | —       | Filter results to this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000)   |
| `exchange`  | string  | No       | —       | Filter by stock exchange MIC code                                                   |
| `sort`      | string  | No       | —       | Sort order for results                                                              |
| `limit`     | integer | No       | —       | Number of results per page (max 1000)                                               |
| `offset`    | integer | No       | —       | Pagination offset                                                                   |

<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 stock ticker symbols (e.g. AAPL, MSFT)"
      },
      "interval": {
        "type": "string",
        "description": "Data interval",
        "enum": [
          "1min",
          "5min",
          "10min",
          "15min",
          "30min",
          "1hour",
          "3hour",
          "6hour",
          "12hour",
          "24hour"
        ]
      },
      "date_from": {
        "type": "string",
        "description": "Filter results from this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter results to this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000)"
      },
      "exchange": {
        "type": "string",
        "description": "Filter by stock exchange MIC code"
      },
      "sort": {
        "type": "string",
        "description": "Sort order for results",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page (max 1000)"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_stock\_price

Get current stock price

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                                        |
| ---------- | ------- | -------- | ------- | ------------------------------------------------------------------ |
| `symbols`  | string  | Yes      | —       | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT) |
| `exchange` | string  | No       | —       | Filter by stock exchange MIC code                                  |
| `limit`    | integer | No       | —       | Number of results per page                                         |
| `offset`   | integer | No       | —       | Pagination offset                                                  |

<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 stock ticker symbols (e.g. AAPL, MSFT)"
      },
      "exchange": {
        "type": "string",
        "description": "Filter by stock exchange MIC code"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_stock\_splits

Get stock split data

**Parameters:**

| Parameter   | Type    | Required | Default | Description                                      |
| ----------- | ------- | -------- | ------- | ------------------------------------------------ |
| `symbols`   | string  | Yes      | —       | One or more comma-separated stock ticker symbols |
| `date_from` | string  | No       | —       | Filter from date (YYYY-MM-DD)                    |
| `date_to`   | string  | No       | —       | Filter to date (YYYY-MM-DD)                      |
| `sort`      | string  | No       | —       | Sort order                                       |
| `limit`     | integer | No       | —       | Number of results per page                       |
| `offset`    | integer | No       | —       | Pagination offset                                |

<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 stock ticker symbols"
      },
      "date_from": {
        "type": "string",
        "description": "Filter from date (YYYY-MM-DD)"
      },
      "date_to": {
        "type": "string",
        "description": "Filter to date (YYYY-MM-DD)"
      },
      "sort": {
        "type": "string",
        "description": "Sort order",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_get\_ticker\_info

Get detailed ticker information

**Parameters:**

| Parameter | Type   | Required | Default | Description               |
| --------- | ------ | -------- | ------- | ------------------------- |
| `symbols` | string | Yes      | —       | 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"
      },
      "symbols": {
        "type": "string",
        "description": "Ticker symbol (e.g. AAPL)"
      }
    },
    "required": [
      "PCID",
      "symbols"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_bonds

List available bonds

**Parameters:**

| Parameter | Type    | Required | Default | Description                  |
| --------- | ------- | -------- | ------- | ---------------------------- |
| `search`  | string  | No       | —       | Search query to filter bonds |
| `limit`   | integer | No       | —       | Number of results per page   |
| `offset`  | integer | No       | —       | Pagination offset            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "Search query to filter bonds"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_currencies

List supported currencies

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `limit`   | integer | No       | —       | Number of results per page |
| `offset`  | integer | No       | —       | Pagination offset          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_etfs

List available ETFs

**Parameters:**

| Parameter | Type    | Required | Default | Description                 |
| --------- | ------- | -------- | ------- | --------------------------- |
| `search`  | string  | No       | —       | Search query to filter ETFs |
| `limit`   | integer | No       | —       | Number of results per page  |
| `offset`  | integer | No       | —       | Pagination offset           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "Search query to filter ETFs"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_exchanges

List stock exchanges

**Parameters:**

| Parameter | Type    | Required | Default | Description                                          |
| --------- | ------- | -------- | ------- | ---------------------------------------------------- |
| `search`  | string  | No       | —       | Search query to filter exchanges by name or MIC code |
| `limit`   | integer | No       | —       | Number of results per page                           |
| `offset`  | integer | No       | —       | Pagination offset                                    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "Search query to filter exchanges by name or MIC code"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_indexes

List stock market indexes

**Parameters:**

| Parameter | Type    | Required | Default | Description                    |
| --------- | ------- | -------- | ------- | ------------------------------ |
| `search`  | string  | No       | —       | Search query to filter indexes |
| `limit`   | integer | No       | —       | Number of results per page     |
| `offset`  | integer | No       | —       | Pagination offset              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "Search query to filter indexes"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_tickers

List all available tickers

**Parameters:**

| Parameter  | Type    | Required | Default | Description                       |
| ---------- | ------- | -------- | ------- | --------------------------------- |
| `exchange` | string  | No       | —       | Filter by stock exchange MIC code |
| `limit`    | integer | No       | —       | Number of results per page        |
| `offset`   | integer | No       | —       | Pagination offset                 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "exchange": {
        "type": "string",
        "description": "Filter by stock exchange MIC code"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_list\_timezones

List supported timezones

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `limit`   | integer | No       | —       | Number of results per page |
| `offset`  | integer | No       | —       | Pagination offset          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## marketstack\_search\_tickers

Search for tickers

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                      |
| ---------- | ------- | -------- | ------- | ------------------------------------------------ |
| `search`   | string  | No       | —       | Search query to filter tickers by symbol or name |
| `exchange` | string  | No       | —       | Filter by stock exchange MIC code                |
| `limit`    | integer | No       | —       | Number of results per page                       |
| `offset`   | integer | No       | —       | Pagination offset                                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "Search query to filter tickers by symbol or name"
      },
      "exchange": {
        "type": "string",
        "description": "Filter by stock exchange MIC code"
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
