Skip to main content
Use these examples as copy/paste starting points for KLSI endpoints.

Set your API key

export API_KEY="your_api_key_here"

Get market details

curl -s -H "X-API-Key: $API_KEY" \
  "https://api.delphiterminal.co/api/v1/klsi/KXNCAAFTOTAL-25NOV29NDSTAN-41/market" \
  | jq

Get trade history

curl -s -H "X-API-Key: $API_KEY" \
  "https://api.delphiterminal.co/api/v1/klsi/KXNCAAFTOTAL-25NOV29NDSTAN-41/tradehistory?limit=50" \
  | jq

Get top of book

curl -s -H "X-API-Key: $API_KEY" \
  "https://api.delphiterminal.co/api/v1/klsi/AMAZONFTC-29DEC31/top_of_book" \
  | jq

Get raw orderbook deltas

curl -s -H "X-API-Key: $API_KEY" \
  "https://api.delphiterminal.co/api/v1/klsi/AMAZONFTC-29DEC31/raw_deltas?limit=10" \
  | jq
For bulk historical exports, use the dedicated guide at /data-extraction.