Market analysis history
API description
Market analysis is ValueAgent’s synthesized output on BTC/ETH price action using multi-dimensional data.
Use cases:
- Fetch AI synthesized market analysis for BTC/ETH
- Understand main-capital trends and composite signals
- Support short-term directional judgment
Data refresh: every 5 minutes
Request URL
- Method:
POST - Path:
/open/v1/ai/getAiTokenAnalyseResultList
Credits
- Credits per call:
1
Prerequisites
No prerequisites; you can call this API directly.
Request parameters
Pass parameters in the request body as JSON.
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | integer | No | Current page, default 1 |
| pageSize | integer | No | Page size, default 10, max 100 |
| beginTime | string | No | Start time |
| endTime | string | No | End time |
Response fields
Only fields inside each object of the data array:
| Field | Type | Actual type | Description |
|---|---|---|---|
| uniqueId | string | string | Unique id |
| ts | long | long | Updated at (ms timestamp) |
| content | string | string | Analysis text |
Field semantics
| Field | Meaning | Guidance |
|---|---|---|
| uniqueId | Unique message id | Identify and trace each analysis message |
| ts | Published at (ms timestamp) | Assess freshness of the analysis |
| content | AI analysis text | Main-capital view, composite read, risk notes, etc. |
Request example
json
{
"page": 1, // Current page, default 1
"pageSize": 10, // Page size, default 10, max 100
"beginTime": "1775732440000", // Start time
"endTime": "1775734240000" // End time
}cURL example (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getAiTokenAnalyseResutList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{
"page": 1,
"pageSize": 10,
"beginTime": "1775732440000",
"endTime": "1775734240000"
}'cURL example (Windows CMD)
cmd
curl --location --request POST "http://${host}/api/open/v1/ai/getAiTokenAnalyseResutList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{ \"page\": 1, \"pageSize\": 10, \"beginTime\": \"1775732440000\", \"endTime\": \"1775734240000\"}"Success response example
json
{
"code": 200,
"message": "success",
"data": [
{
"uniqueId": "645", // Unique id
"ts": 1775734240000, // Updated at
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n⏰ 当前时间:2026-04-09 19:30:40 \n? 当前币价:BTC: $71078.85 ETH:$2180.5 \n\n\nBTC分析: \n? AI主力资金分析:日内主力资金双净流出;1h合约与现货同步大幅净流出,空头主导 \n\n? AI综合分析: ?利空 \n日内主力合约与现货均深度净流出;1h空头压倒性主导,价格承压于关键压力71093.99,支撑71037.53岌岌可危 \n\n⚠️风险提示:若1h双市场持续净流出且跌破" // Analysis text
},
{
"uniqueId": "644",
"ts": 1775733940000,
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n⏰ 当前时间:2026-04-09 19:25:40 \n? 当前币价:BTC: $71175.42 ETH:$2182 \n\n\nBTC分析: \n? AI主力资金分析:日内主力资金双净流出,1h合约空头压倒性主导 \n\n? AI综合分析: ?利空 \n日内主力现货与合约均大幅净流出;1h合约资金断崖式流出,关键压力位71229,支撑71099承压明显。 \n\n⚠️风险提示:若1h主力合约持续强流出且跌破71099.6,或加速下探707"
},
{
"uniqueId": "643",
"ts": 1775733640000,
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n⏰ 当前时间:2026-04-09 19:20:40 \n? 当前币价:BTC: $71209.75 ETH:$2183.91 \n\n\nBTC分析: \n? AI主力资金分析:日内主力资金双净流出,1h合约现货均空头主导 \n\n? AI综合分析: ?利空 \n日内主力合约现货同步大幅净流出;1h空头强势压制,关键压力71229,支撑承压于71099。 \n\n⚠️风险提示:若1h双市场持续净流出且跌破71099,或加速下探70727;若资"
}
// ... more items omitted
],
"requestId": "xxx-xxx-xxx"
}