SDK Overview
The docs site now follows an SDK-first layout. Current status:
- Python SDK (
aeolus-aiwithimport aeolus) is in pre-release - REST API is already available
- Typed SDK examples for Python/JavaScript/Go will be expanded incrementally
Install (Python)
bash
pip install aeolus-ai1
This is an early-access integration page. Version details and changelog links will be added after the first public release.
Multi-language Request Examples
bash
curl "https://api.aeolus-ai.com/v1/ohlc/range/1/day/2026-01-01/2026-05-26?symbol=600519.SH" \
-H "Authorization: Bearer YOUR_API_KEY"1
2
2
python
import os
import requests
r = requests.get(
"https://api.aeolus-ai.com/v1/ohlc/range/1/day/2026-01-01/2026-05-26",
params={"symbol": "600519.SH"},
headers={"Authorization": f"Bearer {os.environ['AEOLUS_API_KEY']}"},
timeout=30,
)
r.raise_for_status()
print(r.json())1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
javascript
const base = "https://api.aeolus-ai.com";
const url = `${base}/v1/ohlc/range/1/day/2026-01-01/2026-05-26?symbol=600519.SH`;
const resp = await fetch(url, {
headers: { Authorization: `Bearer ${process.env.AEOLUS_API_KEY}` },
});
if (!resp.ok) {
throw new Error(`HTTP ${resp.status}`);
}
const data = await resp.json();
console.log(data);1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
go
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
)
func main() {
req, _ := http.NewRequest(
"GET",
"https://api.aeolus-ai.com/v1/ohlc/range/1/day/2026-01-01/2026-05-26?symbol=600519.SH",
nil,
)
req.Header.Set("Authorization", "Bearer "+os.Getenv("AEOLUS_API_KEY"))
resp, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var body map[string]any
if err := json.NewDecoder(resp.Body).Decode(&body); err != nil {
panic(err)
}
fmt.Println(body)
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Versioning Policy
- New endpoints are immediately usable through REST
- Typed SDK methods are added in follow-up SDK releases
- SDK will use a dual track model: typed APIs + raw request fallback