Transactions

Endpoint

GET https://pro.circular.bot/wallets/transactions

This endpoint retrieves the last 50 transactions for a set of wallets, over the most recent stored records, with the option to filter by transaction success status (isSuccess).

Headers

{
    "Content-Type": "application/json",
    "x-api-key": "your-api-key"
}

Parameters

{
    "wallets": [ // Max 5 wallets
        "GuiU6MpLahPHSHYcsfSRjwLUm1AtZ9zP2eiLAkJMBjg",
        ...
    ],
    "isSuccess": true // Optional
}

Response

[
    {
        "isSuccess": true,
        "wallet": "GuiU6MpLahPHSHYcsfSRjwLUm1AtZ9zP2eiLAkJMBjg",
        "signature": "5t2jysNxSxKs5KX1dS8uKvXZvoMSBgcg3TfLYGRYULf4Bv49C6aFMFzaBRE8nkanm4bGiysT1ygyV6D2G7ro7fho",
        "block_number": 314252437,
        "timestamp": "2025-01-15T23:59:48Z",
        "mint": "92cRC6kV5D7TiHX1j56AbkPbffo9jwcXxSDQZ8Mopump",
        "fees": 10000,
        "net_gains_usd": 1.757935,
        "net_gains_sol": 0.008532997
    },
    ...
]

Informations:

  • Requests per minute: 1/3

  • Available plans: PREMIUM, PRO

  • More technical information here

Last updated