crypto_intraday
Fetch intraday time series data for cryptocurrencies, specifying symbol, market, interval, and output format, to monitor and analyze market trends efficiently.
Instructions
Fetches intraday time series data for a cryptocurrency.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Data format for the response. | json |
interval | Yes | Intraday interval. | |
market | Yes | The exchange market (e.g., "USD", "EUR"). | |
outputsize | No | Output size. Compact returns latest 100 data points, Full returns complete history. | compact |
symbol | Yes | The cryptocurrency symbol (e.g., "BTC"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for fetching intraday crypto time series data.",
"properties": {
"datatype": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"interval": {
"description": "Intraday interval.",
"enum": [
"1min",
"5min",
"15min",
"30min",
"60min"
],
"type": "string"
},
"market": {
"description": "The exchange market (e.g., \"USD\", \"EUR\").",
"type": "string"
},
"outputsize": {
"default": "compact",
"description": "Output size. Compact returns latest 100 data points, Full returns complete history.",
"enum": [
"compact",
"full"
],
"type": "string"
},
"symbol": {
"description": "The cryptocurrency symbol (e.g., \"BTC\").",
"type": "string"
}
},
"required": [
"symbol",
"market",
"interval"
],
"type": "object"
}