get_snapshot_crypto_book
Retrieve a snapshot of a cryptocurrency ticker's order book using the Polygon-io MCP Server. Input the ticker and optional parameters to access real-time order book data for informed trading decisions.
Instructions
Get snapshot for a crypto ticker's order book.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_snapshot_crypto_bookArguments",
"type": "object"
}