> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cabalspy.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# KOL Wallet Count

> Show how many tracked KOL wallets are in a token as a live badge or activity signal. Endpoints, chains, first steps and a cookbook.

Show a simple number next to a token, how many tracked KOL wallets are in it right now. It drops into a token overview or a pulse page as an activity badge.

## What it shows

A live count of KOLs in a token. This number is a signal in itself. KOLs are experienced traders who avoid rugs and tend to pile into the same tokens, whether through insider knowledge or a trending narrative. The more KOLs are in a token, the more people treat it as worth trading, so a rising count is an early sign of attention.

## Blockchains

Solana, BNB, Base, ETH and Robinhood.

## Endpoints

Get it live as it changes, or on demand as a snapshot.

<CardGroup cols={2}>
  <Card title="WSS count stream" href="https://docs.cabalspy.xyz/Count">
    Live KOL wallet count per token, pushed as wallets buy.
  </Card>

  <Card title="GET /v1/transactions/count" href="https://docs.cabalspy.xyz/count">
    A count over a time window, on demand.
  </Card>
</CardGroup>

## First steps

<Steps>
  <Step title="Get an API key">
    Register at [apidashboard.cabalspy.xyz](https://apidashboard.cabalspy.xyz) and create a key.
  </Step>

  <Step title="Decide live or on demand">
    Use the WebSocket count stream for a badge that updates itself, or the REST count for a number you pull on a timer.
  </Step>

  <Step title="Subscribe or call">
    For live, open the stream and subscribe to a token or to all tokens. For on demand, call the count endpoint with a time window.
  </Step>
</Steps>

```bash Quick test, on demand theme={null}
curl "https://api.cabalspy.xyz/v1/transactions/count?blockchain=solana&type=kol&hours=1&mint=YOUR_MINT&api_key=YOUR_KEY"
```

## Build it

<Card title="Cookbook, Wallet Count" href="https://docs.cabalspy.xyz/count-1">
  Build a live count badge, REST or WebSocket, step by step.
</Card>
