Skip to main content
GET
/
v1
/
flow
/
sector
/
{sector}
Sector- or industry-level flow aggregation
curl --request GET \
  --url https://flow-api.skylit.ai/v1/flow/sector/{sector} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "sector": "<string>",
    "date": "2023-12-25",
    "metrics": {
      "totalPremium": 123,
      "callPremium": 123,
      "putPremium": 123,
      "netPremium": 123,
      "totalVolume": 1,
      "callVolume": 1,
      "putVolume": 1,
      "netVolume": 123,
      "fir": 123,
      "putCallRatio": 123
    },
    "topContributors": [
      {
        "ticker": "<string>",
        "netPremium": 123,
        "callPremium": 123,
        "putPremium": 123,
        "pctOfSector": 123
      }
    ],
    "industryBreakdown": [
      {
        "industry": "<string>",
        "netPremium": 123,
        "totalPremium": 123,
        "pctOfSector": 123,
        "tickerCount": 1
      }
    ],
    "tickerCount": 1,
    "etf": "<string>"
  },
  "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.

Path Parameters

sector
string
required

Sector ETF symbol (XLK, XLF, XLE, XLV, XLY, XLP, XLU, XLI, XLB, XLRE, XLC) or full sector name (Technology, Financials, Healthcare, etc.).

Example:

"XLK"

Query Parameters

date
string<date>
topN
integer
default:10
Required range: 1 <= x <= 50

Response

Sector flow aggregation.

data
object
required
meta
object
required