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

# Get Token Holder Positions

> Retrieve Holder positions for a token on a specific blockchain, including holdings, trading activity, and label-based filtering.



## OpenAPI

````yaml get /2/token/holder-positions
openapi: 3.0.0
info:
  version: 1.0.0
  title: Mobula API
  description: >-
    Documentation of the Mobula API


    **Demo API**: The default server (demo-api.mobula.io) is a demo API with
    rate limits.

    For production use, please use api.mobula.io with an API key from
    https://admin.mobula.io
servers:
  - url: https://demo-api.mobula.io/api/
    description: Demo API (rate limited, for testing only)
  - url: https://api.mobula.io/api/
    description: Production API (requires API key)
security: []
tags:
  - name: V2 - Token
    description: Token details, price, security, ATH, and holder data
  - name: V2 - Market Data
    description: Market details, OHLCV history, and lighthouse metrics
  - name: V2 - Trades
    description: Token trades, enriched trades, and trade filters
  - name: V2 - Wallet
    description: Wallet positions, activity, trades, analysis, and labels
  - name: V2 - Assets
    description: Cross-chain asset details and price history
  - name: V2 - Swap
    description: Swap quoting and execution
  - name: V2 - Perps
    description: Perpetual futures quoting, execution, and positions
  - name: V2 - Bridge
    description: Cross-chain bridge quoting and intent status (Alpha Preview)
  - name: V2 - DeFi
    description: Bonding pools and pulse data
  - name: V2 - Search
    description: Universal fast search
  - name: V2 - Blockchains
    description: System metadata and chain listings
  - name: V1 - Market Data
    description: Market prices, history, sparklines, pairs, and multi-data
  - name: V1 - Wallet
    description: Wallet portfolio, transactions, history, and NFTs
  - name: V1 - Token
    description: First buyers
  - name: V1 - Trades
    description: Market trades by pair
  - name: V1 - Metadata
    description: Token metadata, categories, trendings, and news
  - name: V1 - Assets
    description: List all assets
  - name: V1 - Search
    description: Search for assets, tokens, and pairs
  - name: V1 - DeFi
    description: Bonding pool pulse data
  - name: V1 - Blockchains
    description: Blockchain listings, pairs, and stats
  - name: V1 - Webhooks
    description: Webhook management
  - name: V1 - Feed
    description: Custom feed creation
paths:
  /2/token/holder-positions:
    get:
      tags:
        - V2 - Token
      summary: Get Token Holder Positions
      parameters:
        - schema:
            type: string
            description: Blockchain chain ID (e.g., "evm:56", "solana:solana")
          required: false
          description: Blockchain chain ID (e.g., "evm:56", "solana:solana")
          name: chainId
          in: query
        - schema:
            type: string
            description: Token contract address
          required: false
          description: Token contract address
          name: address
          in: query
        - schema:
            type: string
            enum:
              - sniper
              - insider
              - bundler
              - proTrader
              - smartTrader
              - freshTrader
              - dev
              - liquidityPool
              - locker
            description: Filter by wallet label (e.g. sniper, bundler, insider)
          required: false
          description: Filter by wallet label (e.g. sniper, bundler, insider)
          name: label
          in: query
        - schema:
            type: number
            nullable: true
            description: 'Maximum number of results (default: 100)'
          required: false
          description: 'Maximum number of results (default: 100)'
          name: limit
          in: query
        - schema:
            type: number
            nullable: true
            description: Offset for pagination
          required: false
          description: Offset for pagination
          name: offset
          in: query
        - schema:
            anyOf:
              - type: string
              - type: array
                items:
                  type: string
            description: Comma-separated wallet addresses to filter
          required: false
          description: Comma-separated wallet addresses to filter
          name: walletAddresses
          in: query
        - schema:
            anyOf:
              - type: boolean
              - type: string
            description: Use swap recipient mode for accurate Account Abstraction tracking
          required: true
          description: Use swap recipient mode for accurate Account Abstraction tracking
          name: useSwapRecipient
          in: query
        - schema:
            anyOf:
              - type: boolean
              - type: string
            description: Include total fees paid (gas + platform + MEV) and deduct from PnL
          required: true
          description: Include total fees paid (gas + platform + MEV) and deduct from PnL
          name: includeFees
          in: query
      responses:
        '200':
          description: Token Holder response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        chainId:
                          type: string
                        walletAddress:
                          type: string
                        tokenAddress:
                          type: string
                        tokenAmount:
                          type: string
                        tokenAmountRaw:
                          type: string
                        tokenAmountUSD:
                          type: string
                        percentageOfTotalSupply:
                          type: string
                        pnlUSD:
                          type: string
                        realizedPnlUSD:
                          type: string
                        unrealizedPnlUSD:
                          type: string
                        totalPnlUSD:
                          type: string
                        totalFeesPaidUSD:
                          type: string
                          default: '0'
                        buyFeesPaidUSD:
                          type: string
                          default: '0'
                        sellFeesPaidUSD:
                          type: string
                          default: '0'
                        buys:
                          type: number
                        sells:
                          type: number
                        volumeBuyToken:
                          type: string
                        volumeSellToken:
                          type: string
                        volumeBuyUSD:
                          type: string
                        volumeSellUSD:
                          type: string
                        avgBuyPriceUSD:
                          type: string
                        avgSellPriceUSD:
                          type: string
                        nativeBalance:
                          type: string
                          default: '0'
                        nativeBalanceRaw:
                          type: string
                          default: '0'
                        walletFundAt:
                          type: string
                          nullable: true
                        lastActivityAt:
                          type: string
                          nullable: true
                        firstTradeAt:
                          type: string
                          nullable: true
                        lastTradeAt:
                          type: string
                          nullable: true
                        labels:
                          type: array
                          nullable: true
                          items:
                            type: string
                          default: []
                        walletMetadata:
                          type: object
                          nullable: true
                          properties:
                            entityName:
                              type: string
                              nullable: true
                            entityLogo:
                              type: string
                              nullable: true
                            entityLabels:
                              type: array
                              items:
                                type: string
                            entityType:
                              type: string
                              nullable: true
                            entityDescription:
                              type: string
                              nullable: true
                            entityTwitter:
                              type: string
                              nullable: true
                            entityWebsite:
                              type: string
                              nullable: true
                            entityGithub:
                              type: string
                              nullable: true
                            entityDiscord:
                              type: string
                              nullable: true
                            entityTelegram:
                              type: string
                              nullable: true
                            extra:
                              type: object
                              additionalProperties:
                                nullable: true
                          required:
                            - entityName
                            - entityLogo
                            - entityLabels
                            - entityType
                            - entityDescription
                            - entityTwitter
                            - entityWebsite
                            - entityGithub
                            - entityDiscord
                            - entityTelegram
                        platform:
                          type: object
                          nullable: true
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                            logo:
                              type: string
                              nullable: true
                          required:
                            - id
                            - name
                            - logo
                        fundingInfo:
                          type: object
                          properties:
                            from:
                              type: string
                              nullable: true
                            date:
                              type: string
                              nullable: true
                            chainId:
                              type: string
                              nullable: true
                            txHash:
                              type: string
                              nullable: true
                            amount:
                              type: string
                              nullable: true
                            formattedAmount:
                              type: number
                              nullable: true
                            currency:
                              type: object
                              nullable: true
                              properties:
                                name:
                                  type: string
                                symbol:
                                  type: string
                                logo:
                                  type: string
                                  nullable: true
                                decimals:
                                  type: number
                                address:
                                  type: string
                              required:
                                - name
                                - symbol
                                - logo
                                - decimals
                                - address
                            fromWalletLogo:
                              type: string
                              nullable: true
                            fromWalletTag:
                              type: string
                              nullable: true
                            fromWalletMetadata:
                              type: object
                              nullable: true
                              properties:
                                entityName:
                                  type: string
                                  nullable: true
                                entityLogo:
                                  type: string
                                  nullable: true
                                entityLabels:
                                  type: array
                                  items:
                                    type: string
                                entityType:
                                  type: string
                                  nullable: true
                                entityDescription:
                                  type: string
                                  nullable: true
                                entityTwitter:
                                  type: string
                                  nullable: true
                                entityWebsite:
                                  type: string
                                  nullable: true
                                entityGithub:
                                  type: string
                                  nullable: true
                                entityDiscord:
                                  type: string
                                  nullable: true
                                entityTelegram:
                                  type: string
                                  nullable: true
                                extra:
                                  type: object
                                  additionalProperties:
                                    nullable: true
                              required:
                                - entityName
                                - entityLogo
                                - entityLabels
                                - entityType
                                - entityDescription
                                - entityTwitter
                                - entityWebsite
                                - entityGithub
                                - entityDiscord
                                - entityTelegram
                          required:
                            - from
                            - date
                            - chainId
                            - txHash
                            - amount
                            - formattedAmount
                            - currency
                            - fromWalletLogo
                            - fromWalletTag
                      required:
                        - chainId
                        - walletAddress
                        - tokenAddress
                        - tokenAmount
                        - tokenAmountRaw
                        - tokenAmountUSD
                        - percentageOfTotalSupply
                        - pnlUSD
                        - realizedPnlUSD
                        - unrealizedPnlUSD
                        - totalPnlUSD
                        - buys
                        - sells
                        - volumeBuyToken
                        - volumeSellToken
                        - volumeBuyUSD
                        - volumeSellUSD
                        - avgBuyPriceUSD
                        - avgSellPriceUSD
                        - walletFundAt
                        - lastActivityAt
                        - firstTradeAt
                        - lastTradeAt
                        - fundingInfo
                  totalCount:
                    type: number
                required:
                  - data
                  - totalCount

````