Wallet Lookup
Looks up a wallet address across ALL chains and wallet types and returns the profile of the first match. Useful when you have an address but don't know which chain or category it is tracked under. Always returns 200 with a found flag (no 404).
Searches every chain/type combination for the given address. If found, returns found: true plus the profile; otherwise found: false.
Parameters
address(required) — wallet address (Solana base58 or0x…for EVM chains)api_key(optional if Bearer header is used)
Authorizations
AuthorizationstringRequired
Authorization: Bearer YOUR_KEY
Query parameters
addressstringRequiredExample:
G6fUXjMKPJzCY1rveAE6Qm7wy5U3vZgKDJmN1VPAdiZCapi_keystringOptionalExample:
YOUR_KEYResponses
200
Lookup completed. found indicates whether the address is tracked.
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/lookup
GET /v1/wallets/lookup?address=text HTTP/1.1
Host: api.cabalspy.xyz
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"data": {
"found": true,
"wallet_address": "G6fUXjMKPJzCY1rveAE6Qm7wy5U3vZgKDJmN1VPAdiZC",
"name": "Cented",
"image_url": "https://cabalspy.xyz/images/cented.png",
"twitter": "@Cented",
"telegram": "",
"copytrade_link": "https://example.com/copytrade/cented",
"type": "kol",
"blockchain": "solana",
"currency": "SOL"
},
"meta": {
"request_id": "req_a1b2c3d4e5f6",
"version": "1.0.0",
"timestamp": "2025-03-19T14:22:30Z"
}
}Last updated