Get Paginated List of Tokens
Retrieves a paginated list of deployed tokens with optional filtering and sorting capabilities.
Endpoint: GET https://www.clanker.world/api/tokens
Query Parameters
q
string
undefined
Search query for token name or symbol
fid
number
undefined
Filter by a single Farcaster user ID (e.g., fid=12345)
fids
string (comma-separated numbers)
undefined
Filter by multiple Farcaster user IDs (e.g., fids=123,456,789)
pairAddress
string
undefined
Filter by paired token contract address
sort
string
'desc'
Sort order: asc (oldest first) or desc (newest first)
sortBy
string
undefined
Sort field: market-cap, tx-h24, price-percent-h24, price-percent-h1, or deployed-at
socialInterface
string
undefined
Filter by social interface (e.g., clanker.world, Bankr)
limit
number
10
Number of results to return (max 20)
cursor
string
undefined
Cursor for efficient pagination
includeUser
boolean
false
Include creator profile data (avatar, name, bio, etc.)
includeMarket
boolean
false
Include real-time market data (market cap, price change, volume)
startDate
number
undefined
Filter tokens created after this Unix timestamp
chainId
number
undefined
Filter by chain ID (e.g., 8453 for Base)
champagne
boolean
false
Filter to show only champagne tokens
Example Requests
Search by token name/symbol
Search by single FID (creator)
Search by FID with market data
Search by contract address
Example Response
Response Fields
data
Array of token objects
total
Total number of tokens matching the query
cursor
Pagination cursor for next page (use in subsequent requests)
tokensDeployed
Total number of tokens deployed (useful when filtering by creator FID)
Token Object Fields
contract_address
Token contract address
name
Token name
symbol
Token symbol
description
Token description
img_url
Token image URL
type
Token type (e.g., clanker_v4, clanker_v3_1)
pair
Trading pair (e.g., WETH, DEGEN)
chain_id
Chain ID (e.g., 8453 for Base)
deployed_at
Deployment timestamp
tx_hash
Deployment transaction hash
pool_address
Uniswap pool address
msg_sender
Address that deployed the token
factory_address
Clanker factory contract address
locker_address
LP locker contract address
social_context
Social media context (platform, messageId, etc.)
extensions
Additional token features (fees, vault, airdrop, etc.)
warnings
Array of warnings about the token configuration
related.user
Creator profile data (only if includeUser=true)
related.market
Market data (only if includeMarket=true)
Pagination Tips
Default limit is 10, maximum is 20
Search is case-insensitive and matches both token names and symbols
Use the
cursorfrom the response to fetch the next page of resultsWhen searching by
fid,tokensDeployedgives you the total count of tokens created by that user
Last updated