GET /orderbook
Retrieve price levels for all supported pairs in a chain
Last updated
Retrieve price levels for all supported pairs in a chain
Last updated
This endpoint provides price levels for all supported pairs on a specific chain. It is useful for estimating available liquidity and obtaining quotes for different order sizes.
Name | Description |
---|---|
Name | Description |
---|---|
Type: Array of order pairs
Name | Description |
---|---|
Note: The price levels returned are in a non-cumulative format. For example, if you wanted to trade 30 ETH for USDT, the price calculation would be: 0.0001 * 1621.71 + 10 * 1621.72 + (30 - 0.0001 - 10) * 1621.54 = 48648.00002.
Explore this endpoint and see how it works here.
apiKey
API Key retrieved from the Native app
chain
*
Blockchain name - Refer to the GET /chains
API here for more information
base_symbol
The symbol of the token the market maker is buying or selling.
base_address
The address of the token the market maker is buying or selling.
quote_symbol
The symbol of the token that will exchanged for the base token.
quote_address
The address of the token that will exchanged for the base token.
levels
This is an array of tuples in the format of [[int, int]]. The value at index 0 is the amount of tokens and the value at index 1 is the price the market maker is willing to transact at.
side
"ask" or "bid". Indicates whether the market maker is buying or selling the base token.
minimum_in_base
The minimum amount of base tokens that the market maker is willing to transact.