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

# List Virtual Accounts

> List all virtual accounts created by the partner, sorted by creation time descending.

List all virtual accounts created by the partner, sorted by creation time descending. Results are served from Holdstation Pay's database — no upstream call to the payment service provider is made.

## Authentication

<ParamField header="Partner-App-Key" type="string" required>
  Your partner app key.
</ParamField>

<ParamField header="X-HSPay-Signature" type="string" required>
  Base64-encoded Ed25519 signature of the sign data.
</ParamField>

<ParamField header="X-HSPay-Timestamp" type="string" required>
  Unix timestamp (seconds) of the request. Must be within 60 seconds of server time.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "success",
    "data": {
      "vas": [
        {
          "id": "550e8400-e29b-41d4-a716-446655440000",
          "partner_id": "partner-xyz",
          "va_account": "1234567890",
          "va_name": "PARTNER ABC ORDER 12345",
          "va_bank": "Vietcombank",
          "remark": "order-12345",
          "status": 1,
          "created_at": "2024-01-15T10:30:00Z",
          "updated_at": "2024-01-15T10:30:00Z",
          "expired_at": "2025-01-01T00:00:00Z"
        }
      ],
      "total_count": 1,
      "page": 1,
      "page_size": 20
    }
  }
  ```
</ResponseExample>
