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

# PredictionTokenHoldersConnection

> A paginated list of prediction token holders.

<div data-generated>
  ## GraphQL

  ```
  type PredictionTokenHoldersConnection {
    items: [PredictionTokenBalance!]!
    total: Int!
    cursor: String
  }

  enum PredictionProtocol {
    POLYMARKET
    KALSHI
  }

  type PredictionTrader {
    id: String!
    protocol: PredictionProtocol!
    venueTraderId: String!
    alias: String
    primaryAddress: String
    linkedAddresses: [String!]
    profileImageUrl: String
    profileUrl: String
    totalTradesCount: Int!
    totalVolumeUsd: String!
    totalVolumeCT: String!
    firstTradeTimestamp: Int!
    lastTradeTimestamp: Int!
    biggestWinUsd: String!
    biggestWinCT: String!
    biggestLossUsd: String!
    biggestLossCT: String!
    allTimeProfitUsd: String!
    allTimeProfitCT: String!
    activeMarketsCount: Int!
    labels: [String!]
    createdAt: Int!
    updatedAt: Int!
  }

  type PredictionTokenBalance {
    walletAddress: String!
    amount: String!
    predictionTrader: PredictionTrader
  }
  ```

  ### Used By

  **Returned by**

  * [predictionTokenHolders](/api-reference/queries/predictiontokenholders.md): Returns token holder balances for a prediction market.
</div>
