> ## 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:
                  - block: 89824545
                    ts: 1783610000000
                    depositor: 0x0c7d...
                    account: 0x30e2...
                    usd: '250000.00'
                    tx: 0x...
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````