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

# Get a customer USD virtual-account deposit

> Returns one provider-confirmed deposit owned by the authenticated merchant, including the snapshotted Yara fee and merchant credit.



## OpenAPI

````yaml /openapi.json get /v1/virtual-account-deposits/{deposit_id}
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/{deposit_id}:
    get:
      tags:
        - public.virtual-accounts
      summary: Get a customer USD virtual-account deposit
      description: >-
        Returns one provider-confirmed deposit owned by the authenticated
        merchant, including the snapshotted Yara fee and merchant credit.
      parameters:
        - description: Virtual-account deposit ID
          in: path
          name: deposit_id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VirtualAccountDepositDetailResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    VirtualAccountDepositDetailResponse:
      properties:
        data:
          $ref: '#/components/schemas/model.ReadProjection'
      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
    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

````