Skip to main content
POST
/
api
/
sol
/
wallets
/
batch
/
stats
Get stats for multiple wallets
curl --request POST \
  --url 'https://de.raze.sh/api/sol/wallets/batch/stats?apiKey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "addresses": [
    "62ThHC1rs2GUfa8J4Qjcj5GD2MSL2d65pcJtenNieDnm",
    "ABC123..."
  ]
}
'
{
  "success": true,
  "data": [
    {
      "address": "<string>",
      "lastTransactionAt": "2023-11-07T05:31:56Z",
      "totalTrades": 123,
      "totalBuys": 123,
      "totalSells": 123,
      "totalVolumeSol": 123,
      "totalVolumeUsd": 123,
      "realizedPnlSol": 123,
      "realizedPnlUsd": 123,
      "uniqueTokensTraded": 123
    }
  ],
  "count": 123,
  "solPriceUsd": 123,
  "timestamp": "2023-11-07T05:31:56Z"
}

Authorizations

apiKey
string
query
required

Body

application/json
addresses
string[]
required
Required array length: 1 - 100 elements
Example:
[
"62ThHC1rs2GUfa8J4Qjcj5GD2MSL2d65pcJtenNieDnm",
"ABC123..."
]

Response

Success

success
boolean
data
object[]
count
integer
solPriceUsd
number
timestamp
string<date-time>