> ## Documentation Index
> Fetch the complete documentation index at: https://developers.yara.cash/llms.txt
> Use this file to discover all available pages before exploring further.

# List customer USD virtual-account deposits

> Lists provider-confirmed USD deposits attributed to the authenticated merchant's customers. The merchant owns every credited balance; customer_id is attribution only.



## OpenAPI

````yaml /openapi.json get /v1/virtual-account-deposits
openapi: 3.0.3
info:
  contact:
    email: support@yara.cash
    name: Yara API Support
  description: >-
    Merchant-facing wallets/address-as-a-service API for creating merchant
    receive addresses, inspecting balances, quoting transfers, and initiating
    payouts to whitelisted recipients.

    Public endpoints are for external integrators. Dashboard endpoints are
    gateway-to-environment surfaces protected by the external API gateway.
    Internal endpoints are platform/system surfaces protected by an internal
    token.
  license:
    name: Proprietary
  title: Yara External API - Public API
  version: '1.0'
servers:
  - url: https://api.yara.cash
security: []
paths:
  /v1/virtual-account-deposits:
    get:
      tags:
        - public.virtual-accounts
      summary: List customer USD virtual-account deposits
      description: >-
        Lists provider-confirmed USD deposits attributed to the authenticated
        merchant's customers. The merchant owns every credited balance;
        customer_id is attribution only.
      parameters:
        - description: Filter by merchant customer ID
          in: query
          name: customer_id
          schema:
            type: string
        - description: Filter by virtual account ID
          in: query
          name: virtual_account_id
          schema:
            type: string
        - description: Deposit state
          in: query
          name: status
          schema:
            type: string
            enum:
              - RECEIVED
              - PROCESSING
              - COMPLETED
              - FAILED
              - REQUIRES_REVIEW
              - REVERSED
        - description: Exact provider deposit reference
          in: query
          name: provider_reference
          schema:
            type: string
        - description: Created at or after this RFC3339 timestamp
          in: query
          name: from
          schema:
            type: string
        - description: Created before this RFC3339 timestamp
          in: query
          name: to
          schema:
            type: string
        - description: 'Number of results per page (default: 50, max: 200)'
          in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 200
        - description: 'Page number (default: 1)'
          in: query
          name: page
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VirtualAccountDepositListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    VirtualAccountDepositListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/model.ReadProjection'
          type: array
        meta:
          $ref: '#/components/schemas/PaginationMeta'
      type: object
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
      type: object
    model.ReadProjection:
      properties:
        amount:
          type: number
        created_at:
          type: string
        credited_at:
          type: string
        currency:
          $ref: >-
            #/components/schemas/github_com_yaracash_yara-api_internal_virtual_account_deposit_model.Currency
        customer_id:
          type: string
        fee:
          $ref: '#/components/schemas/model.FeeSnapshot'
        id:
          type: string
        merchant_credit_amount:
          type: number
        provider_created_at:
          type: string
        provider_reference:
          type: string
        reversed_at:
          type: string
        status:
          $ref: >-
            #/components/schemas/github_com_yaracash_yara-api_internal_virtual_account_deposit_model.Status
        updated_at:
          type: string
        virtual_account_id:
          type: string
      type: object
    PaginationMeta:
      properties:
        limit:
          example: 50
          type: integer
        page:
          example: 1
          type: integer
        total:
          example: 42
          type: integer
        total_pages:
          example: 1
          type: integer
      type: object
    ErrorBody:
      properties:
        code:
          example: validation_error
          type: string
        message:
          example: invalid JSON body
          type: string
      type: object
    github_com_yaracash_yara-api_internal_virtual_account_deposit_model.Currency:
      enum:
        - USD
      type: string
      x-enum-varnames:
        - CurrencyUSD
    model.FeeSnapshot:
      properties:
        amount:
          type: number
        cap:
          type: number
        percentage:
          type: number
      type: object
    github_com_yaracash_yara-api_internal_virtual_account_deposit_model.Status:
      enum:
        - RECEIVED
        - PROCESSING
        - COMPLETED
        - FAILED
        - REQUIRES_REVIEW
        - REVERSED
      type: string
      x-enum-varnames:
        - StatusReceived
        - StatusProcessing
        - StatusCompleted
        - StatusFailed
        - StatusRequiresReview
        - StatusReversed
  securitySchemes:
    ApiKeyAuth:
      description: 'Public merchant API key. You can also send Authorization: ApiKey <key>.'
      in: header
      name: X-Yara-API-Key
      type: apiKey

````