> ## 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 holder stats

> Retrieve total holder count and snapshot block for one combo side position from the Polymarket holders engine. Pass the combo row's `yes_position_id` or `no_position_id`, not a leg `position_id` or `condition_id`.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/combos/{position_id}/holders/stats
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/stats:
    get:
      tags:
        - Combos
      summary: Get combo holder stats
      description: >-
        Retrieve total holder count and snapshot block for one combo side
        position from the Polymarket holders engine. Pass the combo row's
        `yes_position_id` or `no_position_id`, not a leg `position_id` or
        `condition_id`.
      operationId: get_combo_holder_stats
      parameters:
        - name: position_id
          in: path
          description: >-
            Combo side position ID: the `yes_position_id` or `no_position_id`
            returned by `/polymarket/combos` or `/polymarket/combos/metrics`
            (ERC1155 token ID, decimal or 0x-prefixed hex). Do not use leg
            position IDs.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Combo holder stats
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComboHolderStatsResponse'
        '400':
          description: Invalid parameter
components:
  schemas:
    ComboHolderStatsResponse:
      type: object
      required:
        - position_id
        - total_holders
      properties:
        position_id:
          type: string
          description: >-
            Combo side position ID that was queried (`yes_position_id` or
            `no_position_id`).
        condition_id:
          type:
            - string
            - 'null'
          description: Combo condition ID this side position belongs to.
        outcome_name:
          type:
            - string
            - 'null'
          description: Outcome name (`Yes` or `No`).
        outcome_index:
          type:
            - integer
            - 'null'
          format: int32
          description: Outcome index (`0` = Yes, `1` = No).
        total_holders:
          type: integer
          description: Total unique holders for this combo position.
          minimum: 0

````