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

# Deposits Feed

> Recent deposits, filterable by size and time. Each row carries the depositor (often a router) and the beneficiary (real account).

The live deposit feed, filterable by size (`min_usd`) and time (`after` / `before`). Each row carries the `depositor` (usually a router contract) and the `account` (the real beneficiary being funded).


## OpenAPI

````yaml GET /v3/perps/deposits
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/deposits:
    get:
      tags:
        - Perps
      summary: Deposits feed
      description: >-
        Recent deposits, filterable by size and time. Each row carries the
        depositor (often a router) and the beneficiary (real account).
      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
        - name: after
          in: query
          required: false
          description: Only rows after this time (Unix s or ms).
          schema:
            type: string
        - name: before
          in: query
          required: false
          description: Only rows before this time (Unix s or ms).
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                data:
                  - account: '0xa89c876be69223295a0925d7a62cb6868dec4ac8'
                    block: 90021473
                    depositor: '0xd4f71021a1027b603105b56ed005cbd3556373bb'
                    timestamp: 1783737163000
                    tx: >-
                      0x50f6cda932025c618b0f7122cdb807a2e472062259a1fb57cd0dca62d8c9cdf6
                    usd: '1000'
                  - account: '0x5f1609ea53e865f5896ed4e4219bb8e907204598'
                    block: 90021413
                    depositor: '0xd5c796dfd89cea552cf9acc29bed2def4f8ea990'
                    timestamp: 1783737037000
                    tx: >-
                      0x5e7953205827972154de44f4226cd0991ea6f70649cd6223c513a1ecdea0c94a
                    usd: '12.590865'
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````