Endpoints Summary
Quick reference of all available endpoints. See the Complete REST API Reference for full details with request/response examples.
Orders
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| POST | /api/sdk/orders | Create order | TRADE |
| GET | /api/sdk/orders | List orders | READ |
| GET | /api/sdk/orders/:id | Get order | READ |
| GET | /api/sdk/orders/by-client-id | Get by client ID | READ |
| PATCH | /api/sdk/orders/:id | Amend order | TRADE |
| DELETE | /api/sdk/orders/:id | Cancel order | TRADE |
| GET | /api/sdk/orders/:id/fills | Get order fills | READ |
| POST | /api/sdk/orders/batch | Create batch orders | TRADE |
| DELETE | /api/sdk/orders/batch | Cancel all orders | TRADE |
Quotes (Market Making)
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| POST | /api/sdk/quotes | Submit quote | MARKET_MAKING |
| GET | /api/sdk/quotes | List quotes | READ |
| GET | /api/sdk/quotes/:id | Get quote | READ |
| PATCH | /api/sdk/quotes/:id | Update quote | MARKET_MAKING |
| DELETE | /api/sdk/quotes/:id | Cancel quote | MARKET_MAKING |
| DELETE | /api/sdk/quotes | Cancel all quotes | MARKET_MAKING |
| PATCH | /api/sdk/quotes/batch/update | Bulk update quotes | MARKET_MAKING |
Market Data
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| GET | /api/sdk/market-data/prices | Get all prices | READ |
| GET | /api/sdk/market-data/prices/:asset | Get asset price | READ |
| GET | /api/sdk/market-data/orderbook/:asset | Get orderbook | READ |
| GET | /api/sdk/market-data/orderbooks | Get multiple orderbooks | READ |
| GET | /api/sdk/market-data/trading-pairs | Get trading pairs | READ |
| GET | /api/sdk/market-data/stats/24h | Get 24h statistics | READ |
Portfolio
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| GET | /api/sdk/portfolio/balances | Get all balances | READ |
| GET | /api/sdk/portfolio/balances/:asset | Get asset balance | READ |
| GET | /api/sdk/portfolio/positions | Get positions | READ |
| GET | /api/sdk/portfolio/positions/:asset | Get asset position | READ |
| GET | /api/sdk/portfolio/exposure | Get exposure | READ |
| GET | /api/sdk/portfolio/exposure/:asset | Get asset exposure | READ |
| GET | /api/sdk/portfolio/summary | Get portfolio summary | READ |
| GET | /api/sdk/portfolio/pnl | Get P&L breakdown | READ |
| GET | /api/sdk/portfolio/transactions | Get transactions | READ |
| GET | /api/sdk/portfolio/trades | Get trade history | READ |
| GET | /api/sdk/portfolio/available/:asset | Get available balance | READ |
Risk
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| GET | /api/sdk/risk/limits | Get risk limits | READ |
| POST | /api/sdk/risk/pre-trade-check | Pre-trade risk check | TRADE |
| GET | /api/sdk/risk/exposure | Get risk exposure | READ |
| GET | /api/sdk/risk/exposure/:asset | Get asset exposure | READ |
| GET | /api/sdk/risk/utilization | Get limit utilization | READ |
| GET | /api/sdk/risk/max-quantity | Get max order quantity | READ |
| GET | /api/sdk/risk/metrics | Get risk metrics | READ |
| POST | /api/sdk/risk/simulate | Simulate order impact | READ |
Try it out: Use the Interactive Colab Notebook to test these endpoints directly.