terminalMarket Sentiment Endpoint

Returns real-time arbitrage market sentiment from recent transaction activity — so you know when it’s hot and when to sit it out.

POST https://api.getfomo.bot/market-sentiment

Request

curl -X POST https://api.getfomo.bot/market-sentiment \
  -H "Content-Type: application/json" \
  -H "x-api-key: your-api-key-here" \
  -d '{
    "aggregation_window": "12hr"
  }'

Body Fields

Field
Type
Default
Description

aggregation_window

string

12hr

Time window for sentiment. Options: 1hr, 6hr, 12hr

Sentiment Levels

Level
Label
Tx/Min
Description

3

wagmi

≥ 278

Massive volume. Heavy market activity and consistent opportunities.

2

neutral

≥ 243

Decent volume, nothing crazy. You'll find wins, but don't expect infinite freebies.

1

meh

≥ 168

Light volume. Markets not moving much, triggers are sparse, and most opportunities are basically dust.

0

ngmi

< 168

Dead tape. Volume sucks, opportunities are thin (non-existent), and you're more likely to burn fees than print.

null

none

--

Insufficient activity for reliable sentiment.

Response

{
  "success": true,
  "market_sentiment": {
    "sentiment_level": 3,
    "label": "wagmi",
    "description": "Massive volume. Heavy market activity and consistent opportunities.",
    "window": "12hr",
    "total_transactions": 315000,
    "total_volume_usd": 4500000.0,
    "avg_roi_bps": 185.5,
    "tx_per_min": 327.3
  }
}

Last updated