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

# Top Depositors

> Biggest depositors ranked by total pUSD deposited, keyed by the real beneficiary account (not the router).

The biggest depositors, ranked by total pUSD deposited — keyed by the real **beneficiary** account, not the router most deposits flow through. `min_usd` floors the total, `limit` caps rows. From on-chain deposit events; Polymarket exposes none of this.


## OpenAPI

````yaml GET /v3/perps/depositors
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v3/perps/depositors:
    get:
      tags:
        - Perps
      summary: Top depositors
      description: >-
        Biggest depositors ranked by total pUSD deposited, keyed by the real
        beneficiary account (not the router).
      parameters:
        - name: limit
          in: query
          required: false
          description: Max rows.
          schema:
            type: integer
        - name: min_usd
          in: query
          required: false
          description: Only rows with total/size >= this many pUSD.
          schema:
            type: number
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                data:
                  - address: 0x7930...
                    total_usd: '5302028.00'
                    count: 18
                    largest_usd: '1500000.00'
                    last_ts: 1783373000000
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````