Get Tokens by Admin
Retrieves a paginated list of tokens where the specified address is the token admin.
Endpoint
GET /api/tokens/fetch-by-adminAuthentication
Header
Required
Description
Query Parameters
Parameter
Type
Required
Default
Description
Response
Success (200 OK)
{
"data": [
{
"id": "uuid",
"contract_address": "0x...",
"name": "Token Name",
"symbol": "TKN",
"admin": "0x...",
"chain_id": 8453,
"deployed_at": "2024-01-01T00:00:00.000Z",
"pool_address": "0x...",
"img_url": "https://...",
...
}
],
"total": 42,
"cursor": "eyJpZCI6Ii4uLiJ9"
}Field
Type
Description
Error Responses
Examples
Basic Request
With Pagination
With All Options
JavaScript/TypeScript Example
Pagination
Rate Limits
Last updated