> ## 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.

# Global analytics snapshot

> Returns the latest cumulative analytics metrics across all of Polymarket: volume, traders, txn counts, fees, yes/no splits, and buy distribution.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/analytics/counts
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/analytics/counts:
    get:
      tags:
        - Analytics
      summary: Global analytics snapshot
      description: >-
        Returns the latest cumulative analytics metrics across all of
        Polymarket: volume, traders, txn counts, fees, yes/no splits, and buy
        distribution.
      operationId: get_analytics_counts
      responses:
        '200':
          description: Latest global metrics snapshot
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsGlobalCountsResponse'
components:
  schemas:
    AnalyticsGlobalCountsResponse:
      type: object
      description: |-
        Response body for `GET /polymarket/analytics/counts`.
        Cumulative analytics metrics plus entity-count enrichment.
      required:
        - ts
        - block
        - volume_usd
        - buy_volume_usd
        - sell_volume_usd
        - unique_traders
        - unique_makers
        - unique_takers
        - txn_count
        - buy_count
        - sell_count
        - redemption_count
        - redemption_volume_usd
        - merge_count
        - merge_volume_usd
        - split_count
        - split_volume_usd
        - converted_count
        - converted_collateral_usd
        - converted_shares_gained
        - converted_shares_lost
        - maker_rebate_count
        - maker_rebate_volume_usd
        - reward_count
        - reward_volume_usd
        - yield_count
        - yield_volume_usd
        - fees_usd
        - shares_volume
        - buy_shares_volume
        - sell_shares_volume
        - yes_shares_volume
        - no_shares_volume
        - yes_volume_usd
        - no_volume_usd
        - yes_count
        - no_count
        - buy_dist_under_10
        - buy_dist_10_100
        - buy_dist_100_1k
        - buy_dist_1k_10k
        - buy_dist_10k_50k
        - buy_dist_50k_plus
        - tags
        - events
        - markets
        - positions
      properties:
        ts:
          type: integer
          format: int32
          description: Unix-second timestamp of the latest block reflected in the metrics.
          minimum: 0
        block:
          type: integer
          format: int64
          description: Latest block number processed.
          minimum: 0
        volume_usd:
          type: number
          format: double
          description: Volume in USD.
        buy_volume_usd:
          type: number
          format: double
          description: Buy volume in USD.
        sell_volume_usd:
          type: number
          format: double
          description: Sell volume in USD.
        unique_traders:
          type: integer
          format: int64
          description: Distinct addresses that have ever traded on Polymarket (lifetime).
          minimum: 0
        unique_makers:
          type: integer
          format: int64
          description: Distinct makers ever active (lifetime distinct).
          minimum: 0
        unique_takers:
          type: integer
          format: int64
          description: Distinct takers ever active (lifetime distinct).
          minimum: 0
        txn_count:
          type: integer
          format: int64
          description: Transaction count.
          minimum: 0
        buy_count:
          type: integer
          format: int64
          description: Buy count.
          minimum: 0
        sell_count:
          type: integer
          format: int64
          description: Sell count.
          minimum: 0
        redemption_count:
          type: integer
          format: int64
          description: Redemption count.
          minimum: 0
        redemption_volume_usd:
          type: number
          format: double
          description: Redemption volume in USD.
        merge_count:
          type: integer
          format: int64
          description: Merge count.
          minimum: 0
        merge_volume_usd:
          type: number
          format: double
          description: Merge volume in USD.
        split_count:
          type: integer
          format: int64
          description: Split count.
          minimum: 0
        split_volume_usd:
          type: number
          format: double
          description: Split volume in USD.
        converted_count:
          type: integer
          format: int64
          description: Converted count.
          minimum: 0
        converted_collateral_usd:
          type: number
          format: double
          description: Converted collateral in USD.
        converted_shares_gained:
          type: number
          format: double
          description: Converted shares gained.
        converted_shares_lost:
          type: number
          format: double
          description: Converted shares lost.
        maker_rebate_count:
          type: integer
          format: int64
          description: Maker rebate count.
          minimum: 0
        maker_rebate_volume_usd:
          type: number
          format: double
          description: Maker rebate volume in USD.
        reward_count:
          type: integer
          format: int64
          description: Reward count.
          minimum: 0
        reward_volume_usd:
          type: number
          format: double
          description: Reward volume in USD.
        yield_count:
          type: integer
          format: int64
          description: Yield count.
          minimum: 0
        yield_volume_usd:
          type: number
          format: double
          description: Yield volume in USD.
        fees_usd:
          type: number
          format: double
          description: Fees in USD.
        shares_volume:
          type: number
          format: double
          description: Shares volume.
        buy_shares_volume:
          type: number
          format: double
          description: Buy shares volume.
        sell_shares_volume:
          type: number
          format: double
          description: Sell shares volume.
        yes_shares_volume:
          type: number
          format: double
          description: Yes shares volume.
        no_shares_volume:
          type: number
          format: double
          description: No shares volume.
        yes_volume_usd:
          type: number
          format: double
          description: Yes volume in USD.
        no_volume_usd:
          type: number
          format: double
          description: No volume in USD.
        yes_count:
          type: integer
          format: int64
          description: Yes count.
          minimum: 0
        no_count:
          type: integer
          format: int64
          description: No count.
          minimum: 0
        buy_dist_under_10:
          type: integer
          format: int64
          description: Buy trade count in the under-10 USD bucket.
          minimum: 0
        buy_dist_10_100:
          type: integer
          format: int64
          description: Buy trade count in the 10-100 USD bucket.
          minimum: 0
        buy_dist_100_1k:
          type: integer
          format: int64
          description: Buy trade count in the 100-1k USD bucket.
          minimum: 0
        buy_dist_1k_10k:
          type: integer
          format: int64
          description: Buy trade count in the 1k-10k USD bucket.
          minimum: 0
        buy_dist_10k_50k:
          type: integer
          format: int64
          description: Buy trade count in the 10k-50k USD bucket.
          minimum: 0
        buy_dist_50k_plus:
          type: integer
          format: int64
          description: Buy trade count in the 50k-plus USD bucket.
          minimum: 0
        tags:
          type: integer
          format: int64
          description: Total number of tags.
        events:
          type: integer
          format: int64
          description: Total number of events.
        markets:
          type: integer
          format: int64
          description: Total number of markets.
        positions:
          type: integer
          format: int64
          description: Total number of unique positions / traders.

````