This document covers endpoints used to fetch public exchange information and market data. These endpoints are typically public and do not require API Key authentication.
Pagination
Endpoints that return a list of items (such as historical orders) use cursor-based pagination. You can navigate through the data using the before and after parameters. The values for these parameters should be the order ID (ordId) from your last request.
after: Fetches records older than this ID.
before: Fetches records newer than this ID.
Using cursor-based pagination ensures that you won't miss or receive duplicate data in a rapidly changing market.
1. Get Instruments
GET /api/v1/common/instruments
Retrieves detailed information for all tradable products, including spot and swaps, such as product ID, precision, minimum order size, and more. This is the first endpoint you should call before starting to trade.