curl --request GET \
--url https://flow-api.skylit.ai/v1/flow/{ticker} \
--header 'Authorization: Bearer <token>'import requests
url = "https://flow-api.skylit.ai/v1/flow/{ticker}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://flow-api.skylit.ai/v1/flow/{ticker}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://flow-api.skylit.ai/v1/flow/{ticker}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://flow-api.skylit.ai/v1/flow/{ticker}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://flow-api.skylit.ai/v1/flow/{ticker}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://flow-api.skylit.ai/v1/flow/{ticker}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"ticker": "<string>",
"timeframe": "<string>",
"trades": [
{
"timestamp": "2023-11-07T05:31:56Z",
"tradeId": "flow_188afe42c3a77af2_0",
"optionType": "CALL",
"strike": 123,
"expiration": "2023-12-25",
"dte": 1,
"contracts": 2,
"premium": 123,
"price": 123,
"bid": 123,
"ask": 123,
"mid": 123,
"underlyingPrice": 123,
"isSweep": true,
"isMultiLeg": true,
"moneyness": "DEEP_ITM",
"scores": {
"flowScore": 0,
"flowScoreInterpretation": "strong_bullish",
"flowBonus": 50,
"flowBonusInterpretation": "high_conviction",
"baseDirection": 123,
"convictionMultiplier": 123
},
"dteCategory": "zero_dte",
"dteFactor": 123,
"dteMultiplier": 123,
"spreadWidth": 123,
"spreadWidthPct": 123,
"liquidityGrade": "A",
"exchangeCount": 123,
"moneynessPct": 123,
"moneynessWeight": 123,
"combinedMoneynessDteWeight": 123,
"delta": 123,
"notionalDeltaExposure": 123,
"openInterest": 1,
"dailyVolume": 1,
"volOiRatio": 123,
"volOiScore": 123,
"sizeOiRatio": 123,
"sizeOiScore": 123,
"oiIsZero": true,
"rvol": 123,
"rvolScore": 123,
"rvolCategory": "<string>",
"iv": 123,
"ivChangePct": 123,
"relativePremium": 123,
"cluster": {
"clusterId": "<string>",
"clusterTradeCount": 2,
"clusterTotalPremium": 123,
"clusterTimeSpanSeconds": 1
}
}
],
"aggregate": {
"vwf": 123,
"sdf": 123,
"fir": 123
},
"tradeCount": 1,
"sweepCount": 1,
"totalPremium": 123,
"queryTimeMs": 1
},
"meta": {
"timestamp": "2023-11-07T05:31:56Z",
"requestId": "d7574836"
}
}Raw flow feed for a ticker (Flow Score + FlowBonus per trade)
Returns the most recent options trades for {ticker} within the
requested timeframe, each scored on Skylit’s directional Flow Score
(-100 → +100) and conviction-weighted FlowBonus. The response also
includes timeframe-level VWF / SDF / FIR aggregates.
curl --request GET \
--url https://flow-api.skylit.ai/v1/flow/{ticker} \
--header 'Authorization: Bearer <token>'import requests
url = "https://flow-api.skylit.ai/v1/flow/{ticker}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://flow-api.skylit.ai/v1/flow/{ticker}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://flow-api.skylit.ai/v1/flow/{ticker}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://flow-api.skylit.ai/v1/flow/{ticker}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://flow-api.skylit.ai/v1/flow/{ticker}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://flow-api.skylit.ai/v1/flow/{ticker}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"ticker": "<string>",
"timeframe": "<string>",
"trades": [
{
"timestamp": "2023-11-07T05:31:56Z",
"tradeId": "flow_188afe42c3a77af2_0",
"optionType": "CALL",
"strike": 123,
"expiration": "2023-12-25",
"dte": 1,
"contracts": 2,
"premium": 123,
"price": 123,
"bid": 123,
"ask": 123,
"mid": 123,
"underlyingPrice": 123,
"isSweep": true,
"isMultiLeg": true,
"moneyness": "DEEP_ITM",
"scores": {
"flowScore": 0,
"flowScoreInterpretation": "strong_bullish",
"flowBonus": 50,
"flowBonusInterpretation": "high_conviction",
"baseDirection": 123,
"convictionMultiplier": 123
},
"dteCategory": "zero_dte",
"dteFactor": 123,
"dteMultiplier": 123,
"spreadWidth": 123,
"spreadWidthPct": 123,
"liquidityGrade": "A",
"exchangeCount": 123,
"moneynessPct": 123,
"moneynessWeight": 123,
"combinedMoneynessDteWeight": 123,
"delta": 123,
"notionalDeltaExposure": 123,
"openInterest": 1,
"dailyVolume": 1,
"volOiRatio": 123,
"volOiScore": 123,
"sizeOiRatio": 123,
"sizeOiScore": 123,
"oiIsZero": true,
"rvol": 123,
"rvolScore": 123,
"rvolCategory": "<string>",
"iv": 123,
"ivChangePct": 123,
"relativePremium": 123,
"cluster": {
"clusterId": "<string>",
"clusterTradeCount": 2,
"clusterTotalPremium": 123,
"clusterTimeSpanSeconds": 1
}
}
],
"aggregate": {
"vwf": 123,
"sdf": 123,
"fir": 123
},
"tradeCount": 1,
"sweepCount": 1,
"totalPremium": 123,
"queryTimeMs": 1
},
"meta": {
"timestamp": "2023-11-07T05:31:56Z",
"requestId": "d7574836"
}
}Authorizations
Skylit API key in the Authorization header
(Authorization: Bearer fs_live_<key>). X-API-Key is also accepted.
Path Parameters
Underlying ticker symbol (uppercase, e.g. SPY, AAPL).
"SPY"
Query Parameters
Trailing window label for the request. Supported values:
5m, 15m, 1h, 4h, 1d.
5m, 15m, 1h, 4h, 1d Max trades returned. Server caps this at 500.
1 <= x <= 500Minimum total premium per trade (USD).
50000
Filter to calls or puts. all returns both.
call, put, all Filter by trade type. Comma-separated for multiple.
sweep, multi_leg, all Moneyness category filter. Comma-separated for multiple
(e.g. otm,deep_otm). Unknown tokens are ignored.
deep_itm, itm, atm, otm, deep_otm, all Optional lower bound for the trade window. Accepts RFC 3339
(2026-05-27T13:30:00Z) or Unix seconds. Omit to use the timeframe.
Optional upper bound (RFC 3339 or Unix seconds).
Maximum total premium per trade (USD).
Minimum contract size per trade.
x >= 0Maximum contract size per trade.
x >= 0If true, exclude trades flagged as part of a multi-leg structure.
Minimum days to expiration.
Maximum days to expiration.
Minimum strike price (inclusive).
Maximum strike price (inclusive).
Filter to a single expiration date (YYYY-MM-DD).
Optional JSON object overriding the Flow Score conviction weights. Weights must be non-negative and sum to within 0.95–1.05, else 400.
Filter to trades with flowScore ≥ this value (-100..100).
-100 <= x <= 100Filter to trades with flowBonus ≥ this value.
x >= 0Filter to trades with relative volume ≥ this multiple.
x >= 02
If true, attach cluster* fields when a trade is part of a
multi-leg cluster (sweep, condor, etc.).
Trading date (YYYY-MM-DD). Defaults to current trading date.
"2026-05-27"
Was this page helpful?

