Opportunity token list
Description
AI-ranked tokens with upside potential in current conditions.
Use cases
- Swing / momentum screens
- Trend strategies hunting long setups
Tips
- NL: “long-term investing”, “bullish opportunity”, “upside” → this list; label results as opportunity-monitor names
- NL: “upside candidates”, “bullish tokens” → same; clarify monitoring list in UI
Update: Every 5 minutes
Endpoint
- Method:
POST - Path:
/open/v1/ai/getChanceCoinList
Credits
- Cost:
3
Prerequisites
None.
Request body
{}
Response — data[]
| Field | Type | Serialized | Description |
|---|---|---|---|
| vsTokenId | long | string | Token id |
| symbol | string | string | Ticker |
| price | number | string | Price (USD) |
| maxPrice | number | string | Historical high |
| minPrice | number | string | Historical low |
| percentChange1h | number | string | 1h % |
| percentChange24h | number | string | 24h % |
| percentChange7d | number | string | 7d % |
| percentChange30d | number | string | 30d % |
| percentChange60d | number | string | 60d % |
| percentChange90d | number | string | 90d % |
| cost | number | string | Major-holder cost |
| costChange | number | string | Cost delta |
| deviation | number | string | vs cost % |
| marketCap | number | string | MCap USD |
| marketCapRanking | integer | integer | Rank |
| circulatingSupply | number | string | Circ. supply |
| circulationRate | number | string | Circ. % |
| active | integer | string | 24h active addrs |
| newly | integer | string | 24h new holders |
| tradeType | integer | integer | 1/2/3 |
| chanceCoinTradeDataV1Vos | array | array | Window stats |
| timeRange | string | string | Window |
| timeParticleEnum | integer | integer | Enum |
| tradeInflow | number | string | Net inflow |
| tradeAmount | number | string | Volume |
| updateTime | long | long | Updated at |
| pushPrice | number | string | Entry alert px |
| pushMaxPrice | number | string | High after push |
| gains | number | number | Max rally % |
| pushMinPrice | number | string | Low after push |
| declines | number | number | Max drop % |
| score | number | number | AI score |
| scoreChange | number | number | Score delta |
| grade | integer | integer | Opportunity grade |
| alpha | boolean | boolean | Alpha flag |
| fomo | boolean | boolean | FOMO state |
| fomoEscalation | boolean | boolean | FOMO escalation |
| bullishRatio | number | number | Bull share |
| bearishRatio | number | number | Bear share |
Semantics
| Field | Meaning | Tip |
|---|---|---|
| cost | Whale basis | Price < cost → potential value |
| deviation | (price − cost) / cost × 100 | Negative → below cost |
| score | 0–100 | Product bands e.g. ≤45 or ≥80 watch; 45–55 observe; 55–80 opportunity |
| grade | 1–3 (3 hottest) | Higher tier → hotter but riskier |
| pushPrice | First push | Post-push performance anchor |
| gains | (pushMax − push) / push | Upside capture |
| declines | (push − pushMin) / push | Drawdown after signal |
| alpha | Alpha | true → higher attention |
| fomo / fomoEscalation | Crowd heat | Chasing risk |
| tradeInflow | Net | Sustained + → accumulation |
tradeType & timeParticleEnum
Same as Risk token list (1 spot, 2 perp, 3 delivery; 5/15/30/101/104/124/201/207/230…).
Example
json
{}cURL (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getChanceCoinList' \
--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/getChanceCoinList" ^
--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": [
{
"vsTokenId": "23335",
"symbol": "THE",
"price": "0.2792",
"maxPrice": "4.10318040169636",
"minPrice": "0.07220387483514598",
"percentChange1h": "0.32799907",
"percentChange24h": "1.41729409",
"percentChange7d": "4.48765177",
"percentChange30d": "7.90282167",
"percentChange60d": "25.65261453",
"percentChange90d": "56.36890614",
"cost": "0.270901516998264831",
"costChange": "0.0625",
"deviation": "-1.418662",
"marketCap": "36026970.954971075",
"marketCapRanking": 312,
"circulatingSupply": "128932942.41721758",
"circulationRate": "39.535394",
"active": "347",
"newly": "347",
"tradeType": 1,
"chanceCoinTradeDataV1Vos": [],
"updateTime": 1773016500000,
"pushPrice": "0.2621",
"pushMaxPrice": "0.2806",
"gains": 0.0,
"pushMinPrice": "0.2587",
"declines": 1.297215,
"score": 45.0,
"scoreChange": 10.0,
"grade": 2,
"alpha": false,
"fomo": false,
"fomoEscalation": false,
"bullishRatio": 1.0,
"bearishRatio": 0.0
}
],
"requestId": "xxx-xxx-xxx"
}