Delta Exchange API: Complete REST Reference

AlgoCourse | April 15, 2026 4:00 AM

Delta Exchange REST API: A Developer Reference

The Delta Exchange API is one of the most feature-complete derivatives APIs in the crypto space. This guide serves as a practical reference for developers building on top of it.

Base URL and Versioning

All REST calls go to https://api.delta.exchange/v2/. The v2 API supports futures, perpetuals, and options.

Authentication

Every private request requires three headers: api-key, timestamp, and signature. The signature is an HMAC-SHA256 hash of the concatenated method, timestamp, path, and body string.

Key Endpoints

  • GET /products: Lists all tradable instruments.
  • POST /orders: Places a new order.
  • GET /positions: Returns open positions for the authenticated user.
  • DELETE /orders: Cancels an order by ID.

Rate Limits

Delta Exchange enforces per-IP and per-key rate limits. For delta exchange algo trading, stay under 30 requests per second on private endpoints to avoid 429 errors.


Ready to build your own trading bot?

Join our comprehensive C# Algo Trading course and learn from experts.