Query: newTokens
Discover new tokens launched on Base DEXes
newTokens
Discover recently launched tokens across Uniswap V2, V3, V4, and Aerodrome on Base. Returns tokens ordered by launch time (newest first).
Signature
graphqlnewTokens( minLiquidityUsd: Float maxAgeSeconds: Int dex: Dex limit: Int = 20 offset: Int = 0 ): TokenList!
Arguments
| Argument | Type | Default | Description |
|---|---|---|---|
limit | Int | 20 | Total tokens to return (max 100) |
offset | Int | 0 | Pagination offset |
maxAgeSeconds | Int | 86400 | Only tokens launched within this many seconds |
minLiquidityUsd | Float | null | Exclude tokens with liquidity below this USD value |
dex | Dex | ALL | Filter by DEX: UNISWAP_V2, UNISWAP_V3, UNISWAP_V4, AERODROME, BASESWAP, or ALL |
Complexity
Base cost: 5 units. Plus field costs for each token's nested fields.
Returns
A TokenList with tokens, total count, and hasMore boolean for pagination.
Example
graphqlquery GetNewTokens { newTokens(maxAgeSeconds: 3600, minLiquidityUsd: 10000, limit: 10) { tokens { symbol address deployedAt liquidity { usd } risk { score isHoneypot } } hasMore total } }