get_futures_contract_details
Retrieve detailed information for a specific futures contract, including its attributes and pricing, at a specified point in time using Polygon-io MCP Server.
Instructions
Get details for a single futures contract at a specified point in time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
as_of | No | ||
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"as_of": {
"anyOf": [
{
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "As Of"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_futures_contract_detailsArguments",
"type": "object"
}