get_futures_product_details
Retrieve detailed information for a specific futures product, including its state on a selected date. Utilize the Polygon-io MCP Server for accurate historical futures data.
Instructions
Get details for a single futures product as it was at a specific day.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
as_of | No | ||
params | No | ||
product_code | Yes | ||
type | No |
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"
},
"product_code": {
"title": "Product Code",
"type": "string"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Type"
}
},
"required": [
"product_code"
],
"title": "get_futures_product_detailsArguments",
"type": "object"
}