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

# Get Virtual Account

> Retrieve details for a specific virtual account

Returns full details for a specific virtual account by its external ID.

```
GET /v1/business/virtual-account/show/{externalId}
```

## Path Parameters

<ParamField path="externalId" type="string" required>
  The external ID of the virtual account.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/business/virtual-account/show/va_xxxxxx' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Request successful",
    "data": {
      "account_id": "va_xxxxxx",
      "account_number": "9900123456",
      "account_type": "savings",
      "currency": "BRL",
      "customer_id": "da44a3e6-eb5d-429f-8d17-357aa5a6cdf2",
      "status": "active",
      "created_at": "2026-04-01T10:00:00Z"
    }
  }
  ```

  ```json Not Found theme={null}
  {
    "status": "error",
    "status_code": 404,
    "message": "Virtual account not found",
    "data": null
  }
  ```
</ResponseExample>
