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

# List Virtual Card Providers

> Retrieve the list of supported virtual card providers and their credential requirements.

Returns all supported virtual card providers, sorted alphabetically by name. Each entry includes the provider name and the credential fields required for issuing cards.

This endpoint is publicly accessible and does not require authentication.

## Parameters

No parameters required.

<RequestExample>
  ```javascript Node.js theme={null}
  const response = await fetch('https://service.pcibooking.net/api/VirtualCard');

  const data = await response.json();
  console.log(data);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://service.pcibooking.net/api/VirtualCard'
  )

  print(response.json())
  ```
</RequestExample>

## Response

The response contains an array of virtual card provider descriptions.

<ResponseExample>
  ```json 200 theme={null}
  [
      {
          "Name": "WEX",
          "CredentialsNames": [
              "MerchantID",
              "SharedSecret",
              "Account",
              "RebatePWD"
          ],
          "ProviderUrl": "https://www.wexinc.com"
      },
      {
          "Name": "Rapyd",
          "CredentialsNames": [
              "AccessKey",
              "SecretKey"
          ],
          "ProviderUrl": "https://www.rapyd.net"
      }
  ]
  ```
</ResponseExample>
