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

# Get combo holders

> Retrieve holders of a combo position from the Polymarket holders engine. Combo holder state is stored separately from normal position holder state and is sorted by combo position balance descending.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/combos/{position_id}/holders
openapi: 3.1.0
info:
  title: Polymarket API
  description: >-
    RESTful API for querying Polymarket prediction markets data including
    events, markets, traders, holders, and real-time metrics
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.struct.to/v1
security: []
paths:
  /polymarket/combos/{position_id}/holders:
    get:
      tags:
        - Combos
      summary: Get combo holders
      description: >-
        Retrieve holders of a combo position from the Polymarket holders engine.
        Combo holder state is stored separately from normal position holder
        state and is sorted by combo position balance descending.
      operationId: get_combo_holders
      parameters:
        - name: position_id
          in: path
          description: Combo position ID (ERC1155 token ID, decimal or 0x-prefixed hex)
          required: true
          schema:
            type: string
        - name: limit
          in: query
          description: 'Results limit (default: 50, max: 500)'
          required: false
          schema:
            type: integer
            format: int32
        - name: pagination_key
          in: query
          description: Cursor from the previous response
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Combo holders sorted by balance descending
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComboHoldersResponse'
        '400':
          description: Invalid parameter
components:
  schemas:
    ComboHoldersResponse:
      type: object
      required:
        - position_id
        - total_holders
        - holders
      properties:
        position_id:
          type: string
          description: Combo position ID.
        total_holders:
          type: integer
          description: Total unique holders for this combo position.
          minimum: 0
        holders:
          type: array
          items:
            $ref: '#/components/schemas/ComboHolder'
          description: Holders sorted by combo position balance descending.
    ComboHolder:
      type: object
      required:
        - wallet
        - balance
        - balance_raw
      properties:
        wallet:
          type: string
          description: Holder wallet address.
        balance:
          type: number
          format: double
          description: Decimal combo position balance.
        balance_raw:
          type: string
          description: Raw combo position balance before decimals.

````