getIntradayChart
Retrieve minute-based intraday stock price and volume data, including open, high, low, close, and volume, for real-time or historical analysis using specified intervals.
Instructions
Access precise intraday stock price and volume data with the FMP Interval Stock Chart API. Retrieve real-time or historical stock data in intervals, including key information such as open, high, low, and close prices, and trading volume for each minute.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date (YYYY-MM-DD) | |
interval | Yes | Time interval | |
symbol | Yes | Stock symbol | |
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"
},
"interval": {
"description": "Time interval",
"enum": [
"1min",
"5min",
"15min",
"30min",
"1hour",
"4hour"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}