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
| Param | Required | Description |
|---|---|---|
ePoolType | no | Filter 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"
}
]
}
| Field | Description |
|---|---|
sPoolId | null while a creation job is still in progress. |
bIsBurn | true 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"