POSTaliyunmarket-cmapi00066016-finance-a-shares-kline
A-Shares Candlestick Chart
A-Shares Candlestick Chart
Documentation
A-Shares Candlestick Chart
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Shell Example
curl --request POST \
--url 'https://openapi.toolkk.com/v1/aliyunmarket-cmapi00066016-finance-a-shares-kline' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{\n "symbol": "品种代码,如:sh688193",\n "type": "k线类型, 1:1分钟,5:五分钟;15:15分钟;30:30分钟,60:60分钟,120:120分钟,240:日K,1200:周K,7200:月K,86400...",\n "limit": "返回条数,默认10",\n "ma": "\t返回ma均线,可选值为:5,10,15,20,25,30,可不传"\n}'Python Example
import os
import requests
url = "https://openapi.toolkk.com/v1/aliyunmarket-cmapi00066016-finance-a-shares-kline"
payload = {
"symbol": "品种代码,如:sh688193",
"type": "k线类型, 1:1分钟,5:五分钟;15:15分钟;30:30分钟,60:60分钟,120:120分钟,240:日K,1200:周K,7200:月K,86400...",
"limit": "返回条数,默认10",
"ma": "\t返回ma均线,可选值为:5,10,15,20,25,30,可不传"
}
headers = {
"Content-Type": "application/json",
"X-API-Key": os.getenv("TOOLKK_API_KEY", "YOUR_API_KEY"),
}
response = requests.request("POST", url, headers=headers, json=payload, timeout=30)
response.raise_for_status()
print(response.json())Go Example
package main
import (
"bytes"
"fmt"
"io"
"net/http"
)
func main() {
endpoint := "https://openapi.toolkk.com/v1/aliyunmarket-cmapi00066016-finance-a-shares-kline"
payload := []byte("{\n \"symbol\": \"品种代码,如:sh688193\",\n \"type\": \"k线类型, 1:1分钟,5:五分钟;15:15分钟;30:30分钟,60:60分钟,120:120分钟,240:日K,1200:周K,7200:月K,86400...\",\n \"limit\": \"返回条数,默认10\",\n \"ma\": \"\\t返回ma均线,可选值为:5,10,15,20,25,30,可不传\"\n}")
req, err := http.NewRequest("POST", endpoint, bytes.NewBuffer(payload))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
resp, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println(string(body))
}Java Example
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
public class ToolkkExample {
public static void main(String[] args) throws Exception {
String payload = "{\n \"symbol\": \"品种代码,如:sh688193\",\n \"type\": \"k线类型, 1:1分钟,5:五分钟;15:15分钟;30:30分钟,60:60分钟,120:120分钟,240:日K,1200:周K,7200:月K,86400...\",\n \"limit\": \"返回条数,默认10\",\n \"ma\": \"\\t返回ma均线,可选值为:5,10,15,20,25,30,可不传\"\n}";
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://openapi.toolkk.com/v1/aliyunmarket-cmapi00066016-finance-a-shares-kline"))
.method("POST", HttpRequest.BodyPublishers.ofString(payload))
.header("Content-Type", "application/json")
.header("X-API-Key", "YOUR_API_KEY")
.build();
HttpResponse<String> response = HttpClient.newHttpClient()
.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}Request Example
{
"symbol": "品种代码,如:sh688193",
"type": "k线类型, 1:1分钟,5:五分钟;15:15分钟;30:30分钟,60:60分钟,120:120分钟,240:日K,1200:周K,7200:月K,86400...",
"limit": "返回条数,默认10",
"ma": "\t返回ma均线,可选值为:5,10,15,20,25,30,可不传"
}Response Example
{
"msg": "成功",
"code": 200,
"taskNo": "202960247220113090298671",
"data": {
"list": [
{
"amount": "171325.1414",
"ma_volume5": 6110,
"ma_price5": 27.38,
"volume": "6185",
"high": "27.880",
"low": "27.600",
"day": "2024-04-22 10:05:00",
"close": "27.790",
"open": "27.600"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.symbol | object | {...} |
| properties.symbol.type | string | string |
| properties.symbol.description | string | 品种代码,如:sh688193 |
| properties.type | object | {...} |
| properties.type.type | string |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| type | string | object |
| properties | object | {...} |
| properties.msg | object | {...} |
| properties.msg.type | string | string |
| properties.msg.example | string | 成功 |
| properties.msg.description | string | 接口返回码对应的描述信息 |
| properties.code | object | {...} |