Skip to main content

GET /token/all

List every token the user has created, newest first.

Use case

Render a "my tokens" dashboard; optionally filter by pool type to show CPMM and PumpFun launches separately.

Query

ParamRequiredDescription
ePoolTypenoFilter by CPMM or PUMPFUN.

Response 200

{
"tokens": [
{
"sTokenAddress": "…",
"sTokenName": "MyToken",
"sTokenSymbol": "MTK",
"sPoolId": "…",
"ePoolType": "CPMM",
"sImageUrl": "https://ipfs…",
"sMetadataUrl": "https://ipfs…",
"sDescription": "…",
"bIsBurn": false,
"dCreatedAt": "2026-04-20T10:00:00.000Z"
}
]
}
FieldDescription
sPoolIdnull while a creation job is still in progress.
bIsBurntrue after /token/burn-and-lock has succeeded.

Example

curl "$BASE_URL/token/all?ePoolType=CPMM" \
-H "Authorization: Bearer $ACCESS" \
-H "x-user-id: $USER_ID"