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

# Retrieve Virtual Account

> Retrieve detailed information about a specific virtual account by its ID.

Retrieve detailed information about a specific virtual account by its ID.

## Overview

This endpoint returns comprehensive details about a single virtual account, including account information, balance, status, and metadata.

## Path Parameters

<ParamField path="id" type="string" required>
  Virtual account UUID
</ParamField>

## Response

<ResponseField name="data" type="object">
  Complete virtual account object including:

  * `id`: Virtual account UUID
  * `account_no`: Account number
  * `account_name`: Account holder name
  * `bank_name`: Bank name
  * `currency_code`: Currency code
  * `active`: Whether account is active
  * `account_type`: Account type (individual/business)
  * `metadata`: Additional metadata object
  * `dob`: Date of birth of account holder if account is an individual account
  * `reference`: Account reference
  * `rc_number`: RC Number if account is a corporate/business account
  * `corporate_account_type`: Corporate account type if account is a corporate/business account
  * `status`: Status of account. Can be pending, active or failed
  * `created_at`: Creation timestamp
</ResponseField>


## OpenAPI

````yaml GET /accounts/virtual-accounts/{id}
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /accounts/virtual-accounts/{id}:
    get:
      tags:
        - Accounts
      summary: Retrieve Virtual Account
      description: >-
        Retrieve detailed information about a specific virtual account by its
        ID.
      operationId: retrieveVirtualAccount
      parameters:
        - name: id
          in: path
          required: true
          description: Virtual account ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Virtual account retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VirtualAccountResponse'
components:
  schemas:
    VirtualAccountResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          $ref: '#/components/schemas/VirtualAccount'
    VirtualAccount:
      type: object
      properties:
        id:
          type: string
          format: uuid
        currency:
          type: string
        account_number:
          type: string
        account_name:
          type: string
        bank_name:
          type: string
        dob:
          type: string
        reference:
          type: string
        account_type:
          type: string
        active:
          type: boolean
        status:
          type: string
        rc_number:
          type: string
        corporate_account_type:
          type: string
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````