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

# Wallet Flows

> One wallet's collateral flow: total deposited, withdrawn, net, and recent events. Resolved to the signer.

One wallet's collateral history: total deposited, total withdrawn, net, and the recent deposit/withdrawal events. Accepts any address form — resolved to the signer automatically.


## OpenAPI

````yaml GET /v3/perps/wallets/{address}/flows
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/wallets/{address}/flows:
    get:
      tags:
        - Perps
      summary: Wallet flows
      description: >-
        One wallet's collateral flow: total deposited, withdrawn, net, and
        recent events. Resolved to the signer.
      parameters:
        - name: address
          in: path
          required: true
          description: Polymarket address (any form) or signer; resolved automatically.
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Max rows.
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                signer: 0x...
                deposited_usd: '250000.00'
                deposit_count: 4
                withdrawn_usd: '0.00'
                withdrawal_count: 0
                net_usd: '250000.00'
                events:
                  - ts: 1783610000000
                    block: 89824545
                    kind: deposit
                    usd: '250000.00'
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````