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

# Smart Money

> Rank wallets by real TRADING P&L over a window: equity change minus net deposits. Possible only because we hold both equity snapshots and on-chain collateral flows.

Rank wallets by real **trading** P\&L over a window — equity change minus net deposits in that window, so growth from funding the account is stripped out. This is only possible because we hold both the equity snapshots and the on-chain collateral flows. Pick the `window` (1h, 6h, 1d, 7d, 30d). Coverage deepens as history accrues.


## OpenAPI

````yaml GET /v3/perps/traders
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/traders:
    get:
      tags:
        - Perps
      summary: Smart money
      description: >-
        Rank wallets by real TRADING P&L over a window: equity change minus net
        deposits. Possible only because we hold both equity snapshots and
        on-chain collateral flows.
      parameters:
        - name: window
          in: query
          required: false
          description: 1h, 6h, 1d, 7d, 30d (default 1d)
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Max rows.
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                window: 1 day
                data:
                  - address: 0x4c4f...
                    equity: '3148956.82'
                    trading_pnl: '7709.63'
                    as_of: 1783616146481
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````