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

# Latest KOL spot trades

> Returns the newest spot DEX trades from wallets on the shared KOL roster with absolute USD volume at or above `minVolume`. Each trade includes `identity` when available.



## OpenAPI

````yaml /data-api/whale-kol.json get /trades/kols
openapi: 3.1.0
info:
  title: Solana Tracker Whale & KOL Trades API
  version: 1.0.0
  description: >-
    REST feeds for latest high-volume (whale) spot trades and Key Opinion Leader
    (KOL) trades.


    Trade objects match `/trades/:token`, with optional KOL `identity`. Whale
    feeds default to `minVolume=1000`; KOL feeds default to `minVolume=0`.


    Timestamps are Unix milliseconds. Monetary values are USD unless stated
    otherwise.
  contact:
    email: contact@solanatracker.io
  license:
    name: Proprietary
    url: https://www.solanatracker.io/terms
servers:
  - url: https://mainnet.solanatracker.io
    description: Production (mainnet)
  - url: https://data.solanatracker.io
    description: Production (data)
security:
  - apiKey: []
tags:
  - name: Whale Trades
    description: Latest high-volume spot DEX trades.
  - name: KOL Trades
    description: Latest spot DEX trades from wallets on the shared KOL roster.
paths:
  /trades/kols:
    get:
      tags:
        - KOL Trades
      summary: Latest KOL spot trades
      description: >-
        Returns the newest spot DEX trades from wallets on the shared KOL roster
        with absolute USD volume at or above `minVolume`. Each trade includes
        `identity` when available.
      operationId: getKolTrades
      parameters:
        - $ref: '#/components/parameters/KolMinVolume'
        - $ref: '#/components/parameters/Cursor'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/ShowMeta'
        - $ref: '#/components/parameters/HideArb'
        - $ref: '#/components/parameters/SortDirection'
      responses:
        '200':
          $ref: '#/components/responses/TradesSuccess'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  parameters:
    KolMinVolume:
      name: minVolume
      in: query
      required: false
      description: >-
        Minimum absolute USD volume for KOL trades. Use `0` or omit the
        parameter to receive all eligible KOL trades. Allowed: `0`, `1000`,
        `2500`, `5000`, `10000`. Default `0`.
      schema:
        type: number
        enum:
          - 0
          - 1000
          - 2500
          - 5000
          - 10000
        default: 0
    Cursor:
      name: cursor
      in: query
      required: false
      description: >-
        Pagination cursor. Prefer the opaque `nextCursor` from the previous
        response (base64url JSON of `time`/`tx`/`token`/`side`/`wallet`). A raw
        millisecond timestamp is also accepted.
      schema:
        type: string
    Limit:
      name: limit
      in: query
      required: false
      description: Page size. Default `250`, max `500`.
      schema:
        type: integer
        minimum: 1
        maximum: 500
        default: 250
    ShowMeta:
      name: showMeta
      in: query
      required: false
      description: >-
        When true, attach `meta.from` / `meta.to` token metadata and historical
        prices.
      schema:
        type: boolean
        default: false
    HideArb:
      name: hideArb
      in: query
      required: false
      description: >-
        Token-scoped KOL only. Keep rows where from or to matches the path
        token.
      schema:
        type: boolean
        default: false
    SortDirection:
      name: sortDirection
      in: query
      required: false
      description: Only `DESC` is supported.
      schema:
        type: string
        enum:
          - DESC
        default: DESC
  responses:
    TradesSuccess:
      description: Latest spot trades
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/TradesResponse'
    BadRequest:
      description: Invalid request (e.g. bad cursor or minVolume)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            invalidMinVolume:
              value:
                error: 'Invalid minVolume. Allowed: 1000, 2500, 5000, 10000'
            invalidCursor:
              value:
                error: Invalid cursor
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    TradesResponse:
      type: object
      required:
        - trades
        - nextCursor
        - hasNextPage
        - sortDirection
      properties:
        trades:
          type: array
          items:
            $ref: '#/components/schemas/Trade'
        nextCursor:
          type:
            - string
            - 'null'
          description: Opaque base64url cursor for the next page
        hasNextPage:
          type: boolean
        sortDirection:
          type: string
          enum:
            - DESC
        minVolume:
          type: number
          enum:
            - 1000
            - 2500
            - 5000
            - 10000
          description: Echoed request filter
      example:
        trades:
          - tx: >-
              2fWJCNojUK7SyLY1atumdq1tPyUZSS9ENvH6XmdhozvkbZEjqF3aeh2APc93QNBCE4L1yDZCB5a3wp4fS7KCRc7H
            amount: 13720522.130153
            priceUsd: 0.0001106240879205581
            volume: 1517.8202464420085
            volumeSol: 20.202379779999998
            type: buy
            wallet: 9jyqFiLnruggwNn4EQwBNFXwpbLM9hrA4hV59ytyAVVz
            time: 1786471285000
            program: axiom-flash
            pools: []
            identity:
              name: Nach
              twitter: '@NachSOL'
              avatar: >-
                https://kol-avatar.solanatracker.io/9jyqFiLnruggwNn4EQwBNFXwpbLM9hrA4hV59ytyAVVz
        nextCursor: eyJ0aW1lIjoxNzg2NDcxMTg1MDAwfQ
        hasNextPage: true
        sortDirection: DESC
        minVolume: 1000
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    Trade:
      type: object
      required:
        - tx
        - amount
        - priceUsd
        - volume
        - volumeSol
        - type
        - wallet
        - time
        - program
        - pools
      properties:
        tx:
          type: string
          description: Transaction signature
        amount:
          type: number
          description: Main token amount
        priceUsd:
          type:
            - number
            - 'null'
        volume:
          type: number
          description: USD volume at or above `$minVolume`
        volumeSol:
          type: number
        type:
          type: string
          enum:
            - buy
            - sell
        wallet:
          type: string
        time:
          type: integer
          description: Unix timestamp in milliseconds
        program:
          type: string
        pools:
          type: array
          items:
            type: string
        identity:
          $ref: '#/components/schemas/Identity'
        meta:
          type: object
          description: Present when `showMeta=true`
          properties:
            from:
              $ref: '#/components/schemas/TokenMetaSide'
            to:
              $ref: '#/components/schemas/TokenMetaSide'
    Identity:
      type: object
      description: Present when the wallet is on the shared KOL roster.
      properties:
        name:
          type:
            - string
            - 'null'
        twitter:
          type:
            - string
            - 'null'
        avatar:
          type: string
    TokenMetaSide:
      type: object
      properties:
        name:
          type:
            - string
            - 'null'
        symbol:
          type:
            - string
            - 'null'
        image:
          type:
            - string
            - 'null'
        decimals:
          type:
            - integer
            - 'null'
        amount:
          type: number
        address:
          type: string
        priceUsd:
          type:
            - number
            - 'null'
      additionalProperties: true
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````