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

# Get VFD Virtual Account

> Returns the allocated VFD bank virtual account for the merchant.

Returns the allocated VFD bank virtual account details for the merchant's business profile.


## OpenAPI

````yaml GET /{id}/vfd-account
openapi: 3.0.0
info:
  title: NexaPay Business API
  version: 1.0.0
  description: Server-to-server merchant integration API documentation.
servers:
  - url: https://api.nexapay.ng/api/v1/business
    description: Production Server
security: []
tags: []
paths:
  /{id}/vfd-account:
    get:
      tags:
        - Auth
      summary: Get merchant VFD wallet bank account details
      description: Returns the allocated VFD bank virtual account for the merchant.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - $ref: '#/components/parameters/BusinessEnvHeader'
      responses:
        '200':
          description: Virtual account details retrieved successfully.
        '404':
          description: Merchant or VFD details not found.
      security:
        - ApiKeyAuth: []
components:
  parameters:
    BusinessEnvHeader:
      name: x-business-env
      in: header
      required: false
      schema:
        type: string
        enum:
          - prod
          - test
        default: prod
      description: Target environment selector (live production vs. simulated sandbox).
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Merchant API Key (e.g., nexa-prod-... or nexa-test-...)

````