Wallets List
Lists all tracked wallets for a chain and wallet type, with cursor-based pagination. Each entry contains the wallet's profile (name, avatar, social links).
Returns all tracked wallets for the given chain and type.
Parameters / settings
blockchain(required) — one of:solana,bnb,base,ethtype(required) — one of:kol,smart,whale(availability depends on chain)limit(optional) — number of wallets to return. Omit it to get ALL wallets (no cap).cursor(optional) — wallet address from a previous page for paginationapi_key(optional if Bearer header is used)
Authorizations
AuthorizationstringRequired
Authorization: Bearer YOUR_KEY
Query parameters
blockchainstring · enumRequiredExample:
solanaPossible values: typestring · enumRequiredExample:
kolPossible values: limitinteger · min: 1OptionalExample:
50cursorstringOptional
api_keystringOptionalExample:
YOUR_KEYResponses
200
List of wallets.
application/json
successbooleanOptional
metaobjectOptional
400
Missing or invalid parameter.
application/json
401
Missing API key.
application/json
403
Invalid or exhausted API key.
application/json
429
Rate limit exceeded.
application/json
get/v1/wallets
GET /v1/wallets?blockchain=solana&type=kol HTTP/1.1
Host: api.cabalspy.xyz
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"data": {
"blockchain": "solana",
"type": "kol",
"currency": "SOL",
"pagination": {
"limit": 50,
"total": 312,
"has_more": true,
"next_cursor": "7xKp...VwXyZa"
},
"wallets": [
{
"wallet_address": "G6fUXjMKPJzCY1rveAE6Qm7wy5U3vZgKDJmN1VPAdiZC",
"name": "Cented",
"image_url": "https://cabalspy.xyz/images/cented.png",
"twitter": "@Cented",
"telegram": "",
"copytrade_link": "",
"blockchain": "solana",
"type": "kol",
"currency": "SOL"
}
]
},
"meta": {
"request_id": "req_a1b2c3d4e5f6",
"cached": false,
"cache_age_seconds": 0,
"version": "1.0.0",
"timestamp": "2025-03-19T14:22:30Z"
}
}Last updated