Skip to main content

Endpoint

  • URL: GET https://sse.kicks.dev/v1/stream
  • Protocol: text/event-stream
  • Authentication: Authorization: Bearer YOUR_API_KEY
  • Plan requirement: Pro membership
The connection remains open and continuously streams events as they occur.

Selecting Topics

SSE currently supports price updates for:
  • StockX (all markets)
  • GOAT (all markets)
You must specify which markets to listen to using the Topics header.

Header format

Rules

  • Format: [event_type]:[source]:[country_code]
  • Lowercase only
  • Comma-separated

Example request

KicksDB is primarily a product catalog, not a tick-level trading feed. Some markets may not emit events for extended periods depending on refresh cycles. Refer to sources and markets for refresh expectations.

Event Format

Each event follows the standard SSE format:

Fields

  • id — unique incremental event ID
  • event — topic name (source:market)
  • data — JSON payload

Example Payload

Node.js Example

Node 18+ has native fetch support. This example uses the eventsource package for automatic reconnection handling.

Install

Example Listener

Reconnection & Resume (Recommended)

SSE supports automatic reconnection. For production systems:
  • Persist the last processed id
  • Reconnect with Last-Event-ID header
  • Use exponential backoff if connection fails repeatedly
  • Run listener in a dedicated worker process
Only the 5,000 last events are retryable.

Testing with CLI

You can test streaming manually:
If successful, you’ll receive a continuous stream: