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

# Get USD virtual account deposit

> Retrieve a payment received into a USD virtual account

## Overview

Retrieve a specific USD virtual account deposit by ID. Use this endpoint for payments into USD virtual accounts.

<Info>
  Use [Get deposit](/api-reference/deposits/get-deposit) for NGN and crypto deposits received through funding accounts.
</Info>

## Authentication

<ParamField header="X-Api-Key" type="string" required>
  Your merchant API key
</ParamField>

## Path Parameters

<ParamField path="id" type="string" required>
  USD account deposit ID (UUID format).

  **Example:** `9c4e8400-e29b-41d4-a716-446655440000`
</ParamField>

## Request Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://api.daya.co/v1/virtual-account-deposits/9c4e8400-e29b-41d4-a716-446655440000 \
    --header 'X-Api-Key: YOUR_API_KEY'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://api.daya.co/v1/virtual-account-deposits/9c4e8400-e29b-41d4-a716-446655440000',
    {
      headers: {
        'X-Api-Key': 'YOUR_API_KEY'
      }
    }
  );
  const deposit = await response.json();
  ```
</CodeGroup>

## Response

Returns a USD account deposit object. See [List USD account deposits](/api-reference/virtual-account-deposits/list-usd-account-deposits#response) for the full field list.

### Success Response

<ResponseExample>
  ```json 200 OK - Completed theme={null}
  {
    "id": "9c4e8400-e29b-41d4-a716-446655440000",
    "type": "USD_DEPOSIT",
    "va_deposit_id": "9c4e8400-e29b-41d4-a716-446655440000",
    "customer_id": "650e8400-e29b-41d4-a716-446655440000",
    "amount": "100.00",
    "currency": "USD",
    "settled_amount": "99.50",
    "settled_currency": "USD",
    "payment_rail": "ach",
    "sender": {
      "name": "Jane Doe",
      "account_number": "****1234",
      "bank_name": "Chase"
    },
    "status": "COMPLETED",
    "settlement_status": "COMPLETED",
    "fees": {
      "deposit_fee": { "amount": "0.50", "currency": "USD" },
      "total_fee_usd": "0.50"
    },
    "developer_fee": {
      "percentage": "1.5",
      "amount": "1.49",
      "currency": "USD"
    },
    "customer_amount": {
      "amount": "98.01",
      "currency": "USD"
    },
    "created_at": "2026-01-14T17:00:00Z",
    "updated_at": "2026-01-14T17:01:30Z"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": {
      "code": "NOT_FOUND",
      "message": "Deposit not found",
      "request_id": "550e8400-e29b-41d4-a716-446655440000"
    }
  }
  ```
</ResponseExample>
