list_etf_tickers
Retrieve a list of supported ETF tickers with customizable pagination limits and offsets for precise API requests through the Marketstack MCP Server.
Instructions
List all supported ETF tickers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Specify a pagination limit (number of results per page) for your API request. Default limit value is `100`, maximum allowed limit value is `1000`. | |
list | Yes | Specify your list as ticker for your request. | |
offset | No | Specify a pagination offset value for your API request. Example: An offset value of `100` combined with a limit value of 10 would show results 100-110. Default value is `0`, starting with the first available result. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 100,
"description": "Specify a pagination limit (number of results per page) for your API request. Default limit value is `100`, maximum allowed limit value is `1000`.",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"list": {
"const": "ticker",
"description": "Specify your list as ticker for your request.",
"type": "string"
},
"offset": {
"default": 0,
"description": "Specify a pagination offset value for your API request. Example: An offset value of `100` combined with a limit value of 10 would show results 100-110. Default value is `0`, starting with the first available result.",
"minimum": 0,
"type": "integer"
}
},
"required": [
"list"
],
"type": "object"
}