Retrieve transactions

GET

Retrieve all transactions performed on the platform for your account.

Query Parameters

page

(number) nullable

The page number you wish to retrieve.

limit

(number) nullable

The number of transactions to retrieve per page.

Attributes

transactions

(object)[]

The transactions object.


result

(object)

The transaction object.


id

(string)

The transaction id.

transactionResult

(object)

The transaction result.

solscan

(object)

The solana explorer url for the transaction.


tx

(string)

The solana explorer url for the transaction.

total

(number)

The total number of transactions, ignoring pagination.

Useful for

  • Retrieving all transactions performed on the platform for your account.

Endpoint

https://api.tradepump.fun/v1/transaction

Example Request

Node
Curl
Axios
1 2 3 4 5 6 7 8 9 10 import { PumpApiClient } from 'tradepumpfun'; const client = new PumpApiClient({ apiKey: '<your-api-key>' }); await client.transaction.retrieveAll({ page: 1, limit: 10, });