Documentation Index
Fetch the complete documentation index at: https://docs.delphimarkets.com/llms.txt
Use this file to discover all available pages before exploring further.
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