Skip to main content
GET
/
v1
/
stream
Live SSE stream (one symbol per connection)
curl --request GET \
  --url https://api.skylit.ai/v1/stream \
  --header 'Authorization: Bearer <token>'
"<string>"

Authorizations

Authorization
string
header
required

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

Query Parameters

symbol
string
required

Single ticker to stream (e.g. SPY). One symbol per connection.

Example:

"SPY"

metric
enum<string>
default:gamma

Which Greek exposure to return per strike.

Available options:
gamma,
vanna
maxStrikes
integer
default:92

Maximum number of strikes around spot to return.

Required range: 1 <= x <= 400

Response

An SSE stream of heatmap events.

SSE frames, e.g. event: snapshot_update then data: {SymbolHeatmap}. The snapshot_update data payload matches #/components/schemas/SymbolHeatmap.