get_snapshot_all
Retrieve a comprehensive snapshot of all tickers in a specified market, including optional parameters like OTC inclusion and custom configurations, using the Polygon-io MCP Server.
Instructions
Get a snapshot of all tickers in a market.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_otc | No | ||
market_type | Yes | ||
params | No | ||
tickers | No |
Input Schema (JSON Schema)
{
"properties": {
"include_otc": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Include Otc"
},
"market_type": {
"title": "Market Type",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"tickers": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tickers"
}
},
"required": [
"market_type"
],
"title": "get_snapshot_allArguments",
"type": "object"
}