get_last_crypto_trade
Retrieve the most recent trade data for a specified cryptocurrency pair using Polygon-io MCP Server’s API. Input from_ and to currency codes to fetch trade details.
Instructions
Get the most recent trade for a crypto pair.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_ | Yes | ||
params | No | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"from_": {
"title": "From",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"to": {
"title": "To",
"type": "string"
}
},
"required": [
"from_",
"to"
],
"title": "get_last_crypto_tradeArguments",
"type": "object"
}