get_snapshot_ticker
Retrieve a snapshot for a specific ticker by providing the market type and ticker details using the Polygon-io MCP Server.
Instructions
Get snapshot for a specific ticker.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market_type | Yes | ||
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"market_type": {
"title": "Market Type",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"market_type",
"ticker"
],
"title": "get_snapshot_tickerArguments",
"type": "object"
}