get-coin-exchange-price
Retrieve historical cryptocurrency price data from specific exchanges by providing exchange name, currency pair, and timestamp.
Instructions
Get the historical price data for a specific cryptocurrency on a particular exchange.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | Yes | Exchange name | |
from | Yes | From currency/coin symbol | |
timestamp | Yes | Unix timestamp | |
to | Yes | To currency/coin symbol |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"description": "Exchange name",
"type": "string"
},
"from": {
"description": "From currency/coin symbol",
"type": "string"
},
"timestamp": {
"description": "Unix timestamp",
"type": "number"
},
"to": {
"description": "To currency/coin symbol",
"type": "string"
}
},
"required": [
"exchange",
"from",
"to",
"timestamp"
],
"type": "object"
}