> ## Documentation Index
> Fetch the complete documentation index at: https://v3.docs.derive.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# public/get_pending_deposits



## OpenAPI

````yaml /openapi.json post /public/get_pending_deposits
openapi: 3.1.0
info:
  title: Derive v3 API
  version: 0.2.0
  description: JSON-RPC 2.0 methods, served over WebSocket and HTTP POST.
servers:
  - url: https://api.derive.xyz/v3
    description: Production (HTTP POST base)
  - url: https://testnet.api.derive.xyz/v3
    description: Testnet (HTTP POST base)
security: []
tags:
  - name: Subaccounts
    description: >-
      List, inspect, and label subaccounts, portfolios, positions, and
      collateral.
  - name: Session Keys
    description: Register, edit, and list delegated signing keys.
  - name: Account
    description: Wallet-level account information and settings.
  - name: Orderbook
    description: Place, replace, cancel, and query orders, trigger orders, and algos.
  - name: RFQ
    description: 'Request-for-quote: send RFQs, quote, and execute block trades.'
  - name: Vault Shareholders
    description: >-
      Deposit into and withdraw from vaults, and track shares, requests, and
      performance.
  - name: Vault Curators
    description: >-
      Create and operate curated vaults: settle deposit and withdrawal requests,
      and manage vault metadata.
  - name: History
    description: >-
      Per-account historical records: orders, trades, transfers, and
      settlements.
  - name: Market Maker Protection
    description: Configure, read, and reset market-maker protection.
  - name: Transfers & Withdrawals
    description: Move collateral between subaccounts, to other wallets, and on-chain.
  - name: System
    description: Rate limits and transaction lookups.
  - name: Market Data
    description: Instruments, currencies, tickers, and market-wide feeds.
  - name: Referrals
    description: Referral codes and program performance.
  - name: Other
    description: Uncategorized.
paths:
  /public/get_pending_deposits:
    post:
      tags:
        - Other
      summary: public/get_pending_deposits
      operationId: public_get_pending_deposits
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetPendingDepositsParams'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPendingDepositsResult'
        default:
          description: JSON-RPC error (see Error Codes)
components:
  schemas:
    GetPendingDepositsParams:
      type: object
      required:
        - wallet
      properties:
        wallet:
          description: Wallet the pending deposits credit.
          type: string
    GetPendingDepositsResult:
      type: object
      required:
        - pending_deposits
        - wallet
      properties:
        pending_deposits:
          type: array
          items:
            $ref: '#/components/schemas/PendingDepositEntry'
        wallet:
          type: string
    PendingDepositEntry:
      type: object
      required:
        - action_id
        - action_type
        - amount
        - asset
        - block_number
        - deposit_type
        - log_index
        - manager_id
        - status
        - subaccount_id
        - timestamp
        - tx_hash
        - updated_at_ms
      properties:
        action_id:
          description: >-
            Per-queue id assigned by the `OnchainActionManager`; `0` for fast
            deposits (indexed from the factory event, not the pooled OAM
            action).
          type: integer
          format: uint64
          minimum: 0
        action_type:
          description: >-
            `Deposit` (existing subaccount), `DepositToNewSubaccount`, or
            `FastDeposit` (pooled, credited off-chain).
          type: string
        amount:
          description: Amount in the asset's native ERC-20 units, as a decimal string.
          type: string
        asset:
          type: string
        block_number:
          type: integer
          format: uint64
          minimum: 0
        credit_nonce:
          description: >-
            Fast only: the credit transfer's nonce, disambiguating a deposit's
            entries. Absent on slow entries and the uncredited remainder.
            Decimal string — the value exceeds JS number precision.
          type:
            - string
            - 'null'
        deposit_type:
          description: '`slow` or `fast`.'
          type: string
        log_index:
          type: integer
          format: uint64
          minimum: 0
        manager_id:
          description: Manager of the new subaccount; `0` for existing-subaccount deposits.
          type: integer
          format: uint32
          minimum: 0
        status:
          description: >-
            `detected` (transfer seen at the tip, pre-confirmation) `pending`
            (escrow swept, awaiting confirmation) `confirmed` (sweep tx past the
            confirmation range) `reverted` (the sweep reorged out — or
            uncreditable: no valid destination exists) Fast deposits
            additionally show: `crediting` (transfer in flight), `credited`
            (paid out) `partial_revert` (reorged out after a chunk was paid)
          type: string
        subaccount_id:
          description: Credited subaccount; `0` for new-subaccount deposits.
          type: integer
          format: int64
        timestamp:
          description: >-
            Milliseconds when the tracker first picked up the deposit -
            approximates the block timestamp of `block_number`. Shared by all of
            a deposit's entries.
          type: integer
          format: int64
        tx_hash:
          type: string
        updated_at_ms:
          type: integer
          format: int64

````

## Related topics

- [Programmatic Onboarding](/getting-started/depositing.md)
- [Page a vault's pending deposit requests](/api-reference/vault-curators/page-a-vaults-pending-deposit-requests.md)
- [List a wallet's pending vault requests](/api-reference/vault-shareholders/list-a-wallets-pending-vault-requests.md)
