Tokens
Endpoints for searching, listing, and retrieving Clanker token data.
GET /api/tokens
Search and list Clanker tokens with filters, sorting, and cursor-based pagination.
Authentication: Public
Query Parameters
q
string
No
—
Free-text search query (max 100 chars).
fid
number
No
—
Filter by a single Farcaster FID.
fids
string
No
—
Comma-separated list of Farcaster FIDs.
msgSender
address
No
—
Filter by deployer wallet address.
pairAddress
address
No
—
Filter by pool/pair address.
pair
string
No
all
Paired token filter (e.g. "WETH").
sort
`"asc"
"desc"`
No
desc
sortBy
`"market-cap"
"tx-h24"
"price-percent-h24"
"price-percent-h1"
socialInterface
string
No
—
Filter by social interface.
cursor
string
No
—
Pagination cursor returned by a previous request.
startDate
number
No
—
Unix timestamp — only return tokens deployed after this date.
limit
number
No
10
Page size (0–20).
offset
number
No
0
Offset for pagination.
includeUser
boolean
No
false
Include deployer user data in the response.
includeMarket
boolean
No
false
Include market data (price, volume) in the response.
chainId
number
No
—
Chain ID (e.g. 8453 for Base).
champagne
boolean
No
false
Filter for champagne tokens.
Response: Paginated list of tokens with optional user and market data.
Returns 503 with
Retry-After: 5on search timeout. Cached for 2 s at the edge.
GET /api/tokens/trending
Returns trending token pools from CoinGecko.
Authentication: Public
Query Parameters
page
number
No
1
Page number.
order
string
No
h24_price_change_percentage_desc
Sort order (see CoinGecko order values).
chainId
number
No
—
Chain ID.
Response: List of trending pool addresses and their pool data.
Cached for 5 minutes (s-maxage=300).
GET /api/tokens/fetch-deployed-by-fid
Returns tokens deployed by a Farcaster FID.
Authentication: Public
Query Parameters
fid
string
Yes
—
Farcaster ID.
cursor
string
No
—
Pagination cursor.
Response: Paginated token list.
GET /api/tokens/fetch-deployed-by-address
Returns tokens deployed by a wallet address.
Authentication: Public
Query Parameters
address
address
Yes
—
Wallet address.
cursor
string
No
—
Pagination cursor.
Response: Paginated token list.
GET /api/tokens/fetch-by-pool-address
Returns token data for a single pool address.
Authentication: Public
Query Parameters
poolAddress
address
Yes
—
Uniswap pool address.
Response: Token object or undefined.
POST /api/tokens/fetch-by-pool-addresses
Returns token data for multiple pool addresses (max 100).
Authentication: Public
Body Parameters
poolAddresses
string[]
Yes
—
Array of pool addresses.
Response: Map of lowercase pool addresses to token objects.
GET /api/tokens/search
Deprecated: Use GET /api/tokens instead.
Search tokens by query or FIDs.
Authentication: Public
Query Parameters
q
string
No
—
Search query.
fids
string
No
—
Comma-separated FIDs.
cursor
string
No
—
Pagination cursor.
Response: Paginated token list (fixed limit of 5).
GET /api/tokens/estimate-rewards-by-pool-address
Deprecated: This endpoint is deprecated. Use the clanker-sdk availableRewards() method instead.
Estimate uncollected rewards for a pool.
Authentication: Public
Last updated