Overview

Endpoint

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

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

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

Parameters

{
    "wallets": [ // Max 5 wallets
        "Ge8xkdPrPU2tP22nKWBHocCZ6ezfHTLGHZzLsPmEtozH",
        ...
    ],
    "provider": "JITO" // Optional, Filter by provider list ("JITO", "FAST", "TEMPORAL", "BLOX", "NEXTBLOCK", "NO_PROVIDER")
}

Response

{
  "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
    }
  }
}

Informations:

  • Requests per minute: 1/3

  • Available plans: PREMIUM, PRO

  • More technical information here

Last updated