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

> Retrieve a single virtual account by ID

## Overview

Retrieves a single USD virtual account by ID for the authenticated merchant. Response includes deposit instructions, destination, status, provider, and the configured `developer_fee.percentage`.

## Authentication

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

## Path Parameters

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

  **Example:** `650e8400-e29b-41d4-a716-446655440000`
</ParamField>

## Request Example

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

## Response

Returns the full virtual account object including deposit instructions and destination details.

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "650e8400-e29b-41d4-a716-446655440000",
    "customer_id": "650e8400-e29b-41d4-a716-446655440002",
    "merchant_id": "650e8400-e29b-41d4-a716-446655440001",
    "currency": "usd",
    "status": "active",
    "provider": "bridge",
    "developer_fee": {
      "percentage": "1.5"
    },
    "deposit_instructions": {
      "bank_beneficiary_name": "Bridge Trust",
      "bank_beneficiary_address": "123 Finance St, New York, NY",
      "bank_name": "Lead Bank",
      "bank_address": "1801 Main St, Kansas City, MO",
      "bank_routing_number": "101019644",
      "bank_account_number": "1234567890",
      "payment_rails": ["ach", "wire"]
    },
    "destination": {
      "payment_rail": "base",
      "currency": "usdc",
      "address": "0x1234567890abcdef1234567890abcdef12345678"
    },
    "created_at": "2026-01-05T15:04:05Z",
    "updated_at": "2026-01-05T15:04:05Z"
  }
  ```

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