# SniperX KOL Trading Activities on Token

> SniperX KOL Trading Activities on Token is a paid API for AI agents from x402.sniperx.fun, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves Key Opinion Leader (KOL) smart trader buy/sell activities for a specific Solana token, sorted by most recent first

## Facts

- Endpoint: GET https://x402.sniperx.fun/api/v1/token/activities/smarttraders_kol
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sniperx-kol-trading-activities-on-token-932dce69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q2oX_ZKsRMxYShfe2VIEZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sniperx-kol-trading-activities-on-token-932dce69
```

Example prompt: Show me the most recent KOL trading activities for the Solana token at address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v, page 1 with 20 results per page.

## When to prefer this

Use this endpoint when you specifically want to filter trading activity to only KOL/influencer wallets for a Solana token, rather than all smart traders. Prefer this over the general SmartTraders endpoint when the user is interested in social influencer or key opinion leader sentiment and behavior specifically.

## Known failure modes

- Invalid or malformed Solana token address returns an error
- Token address with no KOL activity returns empty result set
- Out-of-range page number returns empty or error response
- Missing required query parameters (token_address, page, limit) causes request failure
- Rate limiting or service downtime may return 5xx errors

## How this service works

Get KOL trading activities on token (sorted by time descending)

## Output

A paginated list of KOL (Key Opinion Leader) smart trader transactions on the specified Solana token, sorted from most recent to oldest, including trade type, amount, timestamp, and trader identity details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token_address",
      "page",
      "limit"
     ],
     "properties": {
      "page": {
       "type": "number",
       "description": "Page number"
      },
      "limit": {
       "type": "number",
       "description": "Items per page"
      },
      "token_address": {
       "type": "string",
       "description": "The Solana token address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sniperx-kol-trading-activities-on-token-932dce69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.sniperx.fun](https://www.zero.xyz/host/x402.sniperx.fun/llms.txt)
