Skip to main content
GET
/
v1
/
dark-pool
/
trades
Paginated off-exchange (TRF) prints
curl --request GET \
  --url https://flow-api.skylit.ai/v1/dark-pool/trades \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://flow-api.skylit.ai/v1/dark-pool/trades"

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/dark-pool/trades', 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/dark-pool/trades",
  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/dark-pool/trades"

	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/dark-pool/trades")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://flow-api.skylit.ai/v1/dark-pool/trades")

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": [ { "timestamp": "2026-07-02T14:31:05.123Z", "ticker": "SPY", "price": 123, "size": 1, "notional": 123, "sector": "<string>", "industry": "<string>" } ], "meta": { "timestamp": "2023-11-07T05:31:56Z", "requestId": "d7574836", "limit": 123, "offset": 123, "count": 123, "hasMore": true } }

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

tickers
string

Comma-separated tickers to include (e.g. AAPL,NVDA). Omit for all names.

Example:

"AAPL,NVDA"

date
string<date>

Single trade date (YYYY-MM-DD, ET). Defaults to today (ET).

date_start
string<date>

Inclusive start of a trade-date range (YYYY-MM-DD, ET). Max span 31 days.

date_end
string<date>

Inclusive end of a trade-date range (YYYY-MM-DD, ET). Max span 31 days.

time_start
string

Inclusive lower bound of the time-of-day window (HH:MM, ET).

Example:

"09:30"

time_end
string

Inclusive upper bound of the time-of-day window (HH:MM, ET).

Example:

"16:00"

min_notional
number<double>
default:1000000

Minimum notional (USD). Defaults to 1,000,000. Pass 0 for the firehose.

max_notional
number<double>
min_size
integer
Required range: x >= 0
max_size
integer
Required range: x >= 0
min_price
number<double>
max_price
number<double>
sectors
string

Comma-separated GICS sectors to include.

industries
string

Comma-separated GICS industries to include.

venue
enum<string>

Reporting venue filter. Omit for both.

Available options:
FINN,
FINC
limit
integer
default:500

Page size (server caps at 5000).

Required range: 1 <= x <= 5000
offset
integer
default:0

Row offset for pagination.

Required range: 0 <= x <= 50000
order
enum<string>
default:desc

Sort by trade time.

Available options:
asc,
desc

Response

Paginated dark-pool prints for the requested filters.

data
object[]
required
meta
object
required