Creators
Endpoints for searching creators and retrieving their tokens and earnings.
GET /api/search-creator
Search creators by Farcaster username, Twitter handle, or wallet address. Returns matching tokens with trust status.
Authentication: Public
Query Parameters
q
string
Yes
—
Username, handle, or address.
trustedOnly
boolean
No
false
Only return trusted deployers.
sort
`"asc"
"desc"`
No
desc
platform
`"farcaster"
"twitter"`
No
—
limit
number
No
20
Page size (1–50).
offset
number
No
0
Offset.
Response: Tokens with trust metadata, user info, and pagination.
{
"tokens": [ { "contract_address": "0x...", "trustStatus": { ... }, ... } ],
"users": [ ... ],
"total": 100,
"hasMore": true
}GET /api/creator-earnings/{tokenAddress}
Returns creator fee earnings for a token.
Authentication: Public
Path Parameters
tokenAddress
address
Yes
—
Token contract address.
Query Parameters
chainId
number
No
8453
Chain ID (defaults to Base).
Response: Total WETH claimed and per-recipient breakdown.
Cached for 1 hour.
GET /api/creator/{address}
Returns a creator profile with stats.
Authentication: Public
Path Parameters
address
address
Yes
—
Creator wallet address.
Response: Creator user info and launch stats.
Cached for 30 seconds.
GET /api/get-clankers-deployed/by-following
Returns tokens deployed by accounts that a given FID follows.
Authentication: Public
Query Parameters
fid
string
Yes
—
Farcaster ID.
includeUser
boolean
No
false
Include user data.
Response: Tokens and follower info.
Last updated