Sector capital list
Description
Real-time per-sector accumulation on CEX across time windows.
Use cases
- Sector rotation monitoring
- Hot or anomalous sectors
- Industry-level flow analysis
Update: Every 5 minutes
Endpoint
- Method:
POST - Path:
/open/v1/trade/categories/getTradeList
Credits
- Cost:
3
Prerequisites
None.
Request body (JSON)
| Field | Type | Required | Description |
|---|---|---|---|
| tradeType | integer | Yes | 1 spot, 2 perp |
tradeType
| Value | Meaning |
|---|---|
| 1 | Spot |
| 2 | Perpetual |
Response — data[]
| Field | Type | Serialized | Description |
|---|---|---|---|
| updateTime | long | long | Updated at (ms) |
| tradeType | integer | integer | 1 spot / 2 perp |
| tag | string | string | Sector slug (English) |
| tagsSimplified | string | string | Localized sector label (often Chinese in API) |
| categoriesTradeDataList | array | array | Window rows |
| timeRange | string | string | Window |
| timeParticleEnum | integer | integer | Granularity |
| tradeInflow | number | number | Net inflow (USD) |
Semantics
| Field | Meaning | Tip |
|---|---|---|
| tag | English id | Use when querying tokens-in-sector |
| tagsSimplified | Display label | Show in UI |
| categoriesTradeDataList | Flow by window | Compare windows for rotation |
Example
json
{
"tradeType": 1
}cURL (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/trade/categories/getTradeList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{
"tradeType": 1
}'cURL (Windows CMD)
cmd
curl --location --request POST "http://${host}/api/open/v1/trade/categories/getTradeList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{ \"tradeType\": 1}"Sample success
json
{
"code": 200,
"message": "success",
"data": [
{
"updateTime": 1773298200000,
"tradeType": 1,
"tag": "Metaverse",
"tagsSimplified": "元宇宙",
"categoriesTradeDataList": [
{
"timeRange": "m5",
"timeParticleEnum": 5,
"tradeInflow": -167
}
]
}
],
"requestId": "xxx-xxx-xxx"
}