Skip to main content
GET
/
wallets
List tracked wallets
curl --request GET \
  --url https://api.solarsentra.io/v1/wallets \
  --header 'Authorization: Bearer <token>'
{
  "wallets": [
    {
      "walletId": "wlt_abc123def456",
      "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
      "alias": "Trading Wallet",
      "balance": 125.42,
      "tokenAccounts": 23,
      "nftCount": 5,
      "riskScore": 34,
      "lastActivity": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 47,
  "page": 1,
  "limit": 25
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header

Query Parameters

page
string
default:1

Page number for pagination

limit
string
default:25

Number of results per page

sortBy
enum<string>
default:lastActivity

Sort field

Available options:
balance,
riskScore,
lastActivity,
trackedAt

Response

200 - application/json

Tracked wallets retrieved successfully

wallets
object[]
total
number
Example:

47

page
number
Example:

1

limit
number
Example:

25

I