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

> Biggest withdrawers ranked by total pUSD withdrawn.

The biggest withdrawers, ranked by total pUSD withdrawn. Pairs with [depositors](/perps/onchain/depositors) and [flows](/perps/onchain/flows) to follow the money.


## OpenAPI

````yaml GET /v3/perps/withdrawers
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/withdrawers:
    get:
      tags:
        - Perps
      summary: Top withdrawers
      description: Biggest withdrawers ranked by total pUSD withdrawn.
      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: 0x271f...
                    total_usd: '750483.40'
                    count: 4
                    largest_usd: '418483.39'
                    last_ts: 1782400000000
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````