Flow anomaly list
Description
Tokens on CEX spot/perp showing major-flow anomalies.
Use cases
- Real-time names with tactical upside / volatility in up or chop regimes
- Unusual institutional / whale flow on retail rails
Tips
- NL: “anomaly”, “flow bullish” → this list; label as flow-anomaly bullish monitor set
- NL overlap with generic “upside tokens” → still use list but clarify flow-driven
Update: Every 5 minutes
Endpoint
- Method:
POST - Path:
/open/v1/ai/getFundsCoinList
Credits
- Cost:
3
Prerequisites
None.
Request body
{}
Response — data[]
| Field | Type | Serialized | Description |
|---|---|---|---|
| updateTime | long | long | Updated at (ms) |
| tradeType | integer | integer | 1 spot / 2 perp / 3 delivery |
| vsTokenId | long | string | Token id |
| symbol | string | string | Ticker |
| name | string | string | Name |
| startTime | long | long | Anomaly start (ms) |
| endTime | long | long | Anomaly end (ms) |
| number24h | integer | integer | Short-window anomaly count (24h) |
| numberNot24h | integer | integer | Trend-window count (~3m) |
| price | number | string | Price (USD) |
| pushPrice | number | string | First-push price |
| gains | number | number | Gain after push (%) |
| decline | number | number | Drawdown after push (%) |
| percentChange24h | number | string | 24h % |
| marketCap | number | string | MCap |
| alpha | boolean | boolean | Alpha flag |
| fomo | boolean | boolean | FOMO |
| fomoEscalation | boolean | boolean | FOMO heat-up |
| bullishRatio | number | number | Bull share |
Semantics
| Field | Meaning | Tip |
|---|---|---|
| startTime / endTime | Episode bounds | Duration of anomaly cluster |
| number24h | High-frequency anomalies | More → more active tape |
| numberNot24h | Slower anomalies | Structural shifts |
| pushPrice | Baseline | Post-push performance |
| alpha | Odd-lot smart flow | true → watch closely |
| fomo | Chasing | Continuation odds vs trap |
| fomoEscalation | Overheat | Tail risk |
tradeType
| Value | Meaning |
|---|---|
| 1 | Spot |
| 2 | Perpetual |
| 3 | Delivery |
Example
json
{}cURL (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getFundsCoinList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{}'cURL (Windows CMD)
cmd
curl --location --request POST "http://${host}/api/open/v1/ai/getFundsCoinList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{}"Sample success
json
{
"code": 200,
"message": "success",
"data": [
{
"updateTime": 1773395400000,
"tradeType": 2,
"vsTokenId": "22974",
"symbol": "TAO",
"name": "Bittensor",
"startTime": 1773297600000,
"endTime": 1773395400000,
"number24h": 7,
"numberNot24h": 1,
"price": "237.5",
"pushPrice": "205.7",
"gains": 19.202722,
"decline": 1.069519,
"percentChange24h": "4.56494468",
"marketCap": "2555201474.4451013",
"alpha": true,
"fomo": false,
"fomoEscalation": false,
"bullishRatio": 0.5569
}
],
"requestId": "xxx-xxx-xxx"
}