> ## 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:
                deposit_count: 13
                deposited_usd: '2656777.090896'
                events:
                  - block: 89996562
                    kind: deposit
                    timestamp: 1783699584000
                    usd: '52978.15075'
                  - block: 89824544
                    kind: deposit
                    timestamp: 1783374238000
                    usd: '117553.8245'
                net_usd: '2656777.090896'
                signer: '0xe666b1fed887af4c9cb8e8f6feb7fc1c537e74a5'
                withdrawal_count: 0
                withdrawn_usd: '0'
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````