Skip to main content
GET
/
v1
/
flow
/
market-breadth
Market-wide breadth, advance/decline, and sector rotation
curl --request GET \
  --url https://flow-api.skylit.ai/v1/flow/market-breadth \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "date": "2023-12-25",
    "majorIndices": [
      {
        "ticker": "<string>",
        "bullishPremium": 123,
        "bearishPremium": 123,
        "netPremium": 123,
        "fir": 123
      }
    ],
    "aggregateSentiment": {
      "combinedBullish": 123,
      "combinedBearish": 123,
      "combinedNetPremium": 123,
      "combinedFir": 123
    },
    "advanceDecline": {
      "advancing": 1,
      "declining": 1,
      "unchanged": 1,
      "total": 1,
      "ratio": 123,
      "breadthPct": 123,
      "marketAvgFir": 123
    },
    "sectorRotation": [
      {
        "sector": "<string>",
        "etf": "<string>",
        "fir": 123,
        "netPremium": 123
      }
    ]
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "requestId": "d7574836"
  }
}

Authorizations

Authorization
string
header
required

Skylit API key in the Authorization header (Authorization: Bearer fs_live_<key>). X-API-Key is also accepted.

Query Parameters

date
string<date>

Trading date (YYYY-MM-DD). Defaults to today.

firThreshold
number<double>
default:10

Absolute FIR threshold (in %) used to classify a ticker as advancing or declining. Tickers with |fir| < threshold count as unchanged.

Response

Market breadth + advance/decline + sector rotation.

data
object
required
meta
object
required