BS
BaseScreener

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

graphql
newTokens( minLiquidityUsd: Float maxAgeSeconds: Int dex: Dex limit: Int = 20 offset: Int = 0 ): TokenList!

Arguments

ArgumentTypeDefaultDescription
limitInt20Total tokens to return (max 100)
offsetInt0Pagination offset
maxAgeSecondsInt86400Only tokens launched within this many seconds
minLiquidityUsdFloatnullExclude tokens with liquidity below this USD value
dexDexALLFilter 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

graphql
query GetNewTokens { newTokens(maxAgeSeconds: 3600, minLiquidityUsd: 10000, limit: 10) { tokens { symbol address deployedAt liquidity { usd } risk { score isHoneypot } } hasMore total } }