> For the complete documentation index, see [llms.txt](https://docs.circular.bot/circular-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.circular.bot/circular-docs/api/tools/wallets/transactions.md).

# Overview

## Endpoint

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

This endpoint retrieves the total net gains, trading volume, and transaction counts (in USD and SOL) for the specified wallets over the last 24 hours.

**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
        "Ge8xkdPrPU2tP22nKWBHocCZ6ezfHTLGHZzLsPmEtozH",
        ...
    ],
    "provider": "JITO" // Optional, Filter by provider list ("JITO", "FAST", "TEMPORAL", "BLOX", "NEXTBLOCK", "NO_PROVIDER")
}
```

**Response**

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

```json
{
  "Ge8xkdPrPU2tP22nKWBHocCZ6ezfHTLGHZzLsPmEtozH": {
    "gains": {
      "SOL": {
        "success": 105.85100016,
        "fail": 0,
        "total": 105.85100016
      },
      "USD": {
        "success": 21577.28,
        "fail": 0,
        "total": 21577.28
      }
    },
    "volume": {
      "SOL": {
        "success": 8946.107759684,
        "fail": 0,
        "total": 8946.107759684
      },
      "USD": {
        "success": 1825002.08,
        "fail": 0,
        "total": 1825002.08
      }
    },
    "transactions": {
      "success": 1003,
      "fail": 0,
      "total": 1003
    }
  }
}
```

{% 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_overview_wallets_overview_get)
