List All Wallets
GET
Retrieve all of your wallets.
Response
Useful for
Retrieving all of your wallets.
Endpoint
https://api.tradepump.fun/v1/wallet
Example Request
Node
Curl
Axios
1
2
3
4
5
6
7
import { PumpApiClient } from 'tradepumpfun';
const client = new PumpApiClient({
apiKey: '<your-api-key>'
});
await client.wallet.retrieveAll();
Response Example
{
"result": [
{
"result": {
"id": "<:id>",
"fkAccountId": "<account-id>",
"nickname": "My Wallet 1",
"description": "My Wallet Description 1",
"primary": true,
"exp": "1000",
"level": 1,
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z"
},
"solscan": {
"wallet": "https://solscan.io/account/<:id>"
}
},
{
"result": {
"id": "<:id>",
"fkAccountId": "<account-id>",
"nickname": "My Wallet 2",
"description": "My Wallet Description 2",
"primary": true,
"exp": "1000",
"level": 1,
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z"
},
"solscan": {
"wallet": "https://solscan.io/account/<:id>"
}
}
]
}