Get Tokens Deployed by Address
Retrieve all tokens deployed by a specific Ethereum address.
Last updated
Retrieve all tokens deployed by a specific Ethereum address.
Last updated
Headers:
Query Parameters:
address
string
Ethereum address to fetch tokens for
page
integer
Page number for pagination
Example Request:
Example Response:
Top-Level Fields:
data
array
Array of token objects
hasMore
boolean
Indicates if there are more pages of results
total
integer
Total number of tokens deployed by the address
Token Object Fields:
id
integer
Unique identifier for the token
created_at
string
ISO 8601 timestamp of token creation
tx_hash
string
Transaction hash of the deployment
requestor_fid
integer
Farcaster ID of the requestor
contract_address
string
Deployed token contract address
name
string
Token name
symbol
string
Token symbol
img_url
string|null
URL of token image, null if not provided
pool_address
string
Address of the token's liquidity pool
cast_hash
string
Associated Farcaster cast hash
type
string
Token factory type (e.g., "clanker_v2")
pair
string
Quote token that is paired with the deployed token
Cache responses when appropriate to minimize calls
Handle null values for optional fields like img_url
Validate Ethereum addresses before making requests