For the complete documentation index, see llms.txt. This page is also available as Markdown.

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).

List tracked wallets

get

Returns all tracked wallets for the given chain and type.

Parameters / settings

  • blockchain (required) — one of: solana, bnb, base, eth

  • type (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 pagination

  • api_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: 50
cursorstringOptional
api_keystringOptionalExample: YOUR_KEY
Responses
200

List of wallets.

application/json
successbooleanOptional
metaobjectOptional
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