Pools
Get liquidity pool by ID
Retrieves a liquidity pool by its unique identifier.
The unique identifier of the liquidity pool.
The liquidity pool details with serialized BigInt values.
Get liquidity pools by token names
Retrieves liquidity pools matching the specified token names and optional fee tier.
A list of liquidity pools with serialized BigInt values.
Get liquidity pools by token IDs
Retrieves liquidity pools matching the specified token IDs and optional fee tier.
A list of liquidity pools with serialized BigInt values.
Get pool statistics by IDs
Retrieves statistics for multiple pools identified by their IDs.
A list of pool statistics with serialized BigInt values.
Get pool statistics by filter
Retrieves a paginated list of pool statistics based on provided filters.
The filter parameters for searching pools.
name
: An array of token names to filter pools.minTvl
: The minimum total value locked (TVL) to filter pools.minVolume
: The minimum trading volume to filter pools.sort
: An array of sorting fields and directions.limit
(optional): The maximum number of results to return.offset
(optional): The number of results to skip for pagination.
A paginated response containing a list of pool statistics with serialized BigInt values.
Get grouped pool statistics by token filter
Retrieves a paginated list of pool statistics grouped by tokens based on provided filters.
The filter parameters for searching and grouping pools by tokens.
name
: An array of token names to filter pools.minTvl
: The minimum total value locked (TVL) to filter pools.minVolume
: The minimum trading volume to filter pools.sort
: An array of sorting fields and directions.limit
(optional): The maximum number of results to return.offset
(optional): The number of results to skip for pagination.
A paginated response containing a list of grouped pool statistics with serialized BigInt values.
Get liquidity pools
Retrieves a paginated list of liquidity pools based on the specified name and sorting options.
A paginated response containing a list of liquidity pools with serialized BigInt values.
Last updated