Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.alphafeed.org/v1/klines/intraday \ --header 'X-API-Key: <api-key>'
{ "data": { "amount": [ 123 ], "close": [ 123 ], "high": [ 123 ], "low": [ 123 ], "open": [ 123 ], "timestamp": [ 123 ], "volume": [ 123 ], "prev_close": [ 123 ] } }
获取单个标的当日分钟级K线数据。支持 1m/5m/15m/30m/60m 周期。
在请求头 X-API-Key 中传递 API Key
标的代码(如 600000.SH、AAPL.US、00700.HK)
600000.SH
AAPL.US
00700.HK
分时周期
1m
5m
10m
15m
30m
60m
最大返回条数
x <= 10000
日内K线数据
列式OHLCV数据,传输效率高。每个数组长度相同,相同下标对应同一根K线。
Show child attributes