get_new_pools
Retrieve recently created Uniswap V3 liquidity pools across multiple blockchain networks within a specified time range, sorted by timestamp, transaction count, TVL, or volume.
Instructions
Returns a list of trading pools created in the specified time range on Uniswap V3.
Parameters: chain (str): The blockchain on which Uniswap is deployed. Default is 'ethereum'. Supported options include: 'ethereum', 'base', 'optimism', 'arbitrum', 'polygon', 'bsc', 'avalanche', 'celo' and 'blast'. order_by (str): The field to sort data in descending order before returning to the user. Default is 'timestamp'. Supported options include: - timestamp: Sort by Timestamp - txcount: Sort by Transaction Count - tvl: Sort by Total Value Locked - volume: Sort by Volume time_range_seconds (int): The time range in seconds to look back for new pools. Default is 300 seconds (5 minutes). limit (int): The maximum number of pools to return. Default is 100 pools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | No | ethereum | |
limit | No | ||
order_by | No | timestamp | |
time_range_seconds | No |