# Transactions

## Endpoint

<mark style="color:green;">`GET`</mark>[ `https://pro.circular.bot/wallets/transactions`](https://pro.circular.bot/market/tips/by/computeUnit)&#x20;

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**

<pre class="language-json"><code class="lang-json"><strong>{
</strong>    "Content-Type": "application/json",
    "x-api-key": "your-api-key"
}
</code></pre>

**Parameters**

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

**Response**

{% tabs %}
{% tab title="200" %}

```json
[
    {
        "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
    },
    ...
]
```

{% endtab %}
{% endtabs %}

**Informations:**

* Requests per minute: 1/3
* Available plans: [**PREMIUM**](https://www.circular.bot/plans), [**PRO**](https://www.circular.bot/plans)
* More technical information [here](https://pro.circular.bot/documentation#operation/get_transactions_wallets_transactions_get)
