Spot Reference
The Spot REST API. Each endpoint has its own page with request parameters, code samples in Python, Java, Go, and Node.js, response shape, and field-level documentation.
Just want to start trading?
Skip ahead to the Spot Client recipe — a single-file client (Python / Java / Go / Node.js) with every endpoint below already wrapped as a method. Drop it in, set your keys, call cs.create_order(...).
Market data (no auth required for some, but signed for all in this doc)
- Active Coins — list trading symbols available on an exchange
- Exchange Precision — decimal places for price/quantity
- Trade Info — min/max order size and precision
- Trading Fee — your maker/taker fee schedule
- Trades — recent public trades for a symbol
- Depth (Order Book) — bids and asks snapshot
- Candles — historical OHLCV
- Tickers (24hr) — 24h stats for one or all symbols
Orders
- Create Order — place a new order
- Cancel Order — cancel an open order
- Get Order — fetch a single order by ID
- List Orders — list open or closed orders
Account
- Portfolio — wallet holdings with cost basis and INR value
- TDS — cumulative TDS for the financial year
Background
If you haven't already, read Order Lifecycle to understand the order state machine, and grab the Reference Client so the code samples below work.