Skip to content

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[]

FieldTypeSerializedDescription
vsTokenIdlongstringToken id
symbolstringstringTicker
pricenumberstringPrice (USD)
maxPricenumberstringHistorical high
minPricenumberstringHistorical low
percentChange1hnumberstring1h %
percentChange24hnumberstring24h %
percentChange7dnumberstring7d %
percentChange30dnumberstring30d %
percentChange60dnumberstring60d %
percentChange90dnumberstring90d %
costnumberstringMajor-holder cost
costChangenumberstringCost delta
deviationnumberstringvs cost %
marketCapnumberstringMCap USD
marketCapRankingintegerintegerRank
circulatingSupplynumberstringCirc. supply
circulationRatenumberstringCirc. %
activeintegerstring24h active addrs
newlyintegerstring24h new holders
tradeTypeintegerinteger1/2/3
chanceCoinTradeDataV1VosarrayarrayWindow stats
  timeRangestringstringWindow
  timeParticleEnumintegerintegerEnum
  tradeInflownumberstringNet inflow
  tradeAmountnumberstringVolume
updateTimelonglongUpdated at
pushPricenumberstringEntry alert px
pushMaxPricenumberstringHigh after push
gainsnumbernumberMax rally %
pushMinPricenumberstringLow after push
declinesnumbernumberMax drop %
scorenumbernumberAI score
scoreChangenumbernumberScore delta
gradeintegerintegerOpportunity grade
alphabooleanbooleanAlpha flag
fomobooleanbooleanFOMO state
fomoEscalationbooleanbooleanFOMO escalation
bullishRationumbernumberBull share
bearishRationumbernumberBear share

Semantics

FieldMeaningTip
costWhale basisPrice < cost → potential value
deviation(price − cost) / cost × 100Negative → below cost
score0–100Product bands e.g. ≤45 or ≥80 watch; 45–55 observe; 55–80 opportunity
grade1–3 (3 hottest)Higher tier → hotter but riskier
pushPriceFirst pushPost-push performance anchor
gains(pushMax − push) / pushUpside capture
declines(push − pushMin) / pushDrawdown after signal
alphaAlphatrue → higher attention
fomo / fomoEscalationCrowd heatChasing risk
tradeInflowNetSustained + → 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"
}