getCryptocurrency1MinuteData
Access real-time, 1-minute interval cryptocurrency price data to monitor short-term market fluctuations and trading volume updates effectively.
Instructions
Get real-time, 1-minute interval price data for cryptocurrencies with the 1-Minute Cryptocurrency Intraday Data API. Monitor short-term price fluctuations and trading volume to stay updated on market movements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date (YYYY-MM-DD) | |
symbol | Yes | Cryptocurrency symbol (e.g., BTCUSD) | |
to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"symbol": {
"description": "Cryptocurrency symbol (e.g., BTCUSD)",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}