> ## 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.

# Get Supported Credit Cards

> Retrieve the list of supported credit card type codes.

For the full list of card brands with their codes, see the [Supported Card Types](/reference/card-types) reference page.

This method returns the list of supported credit card type codes. You can use this to validate or filter card types in your integration.

**Authentication:** Not required (public endpoint). This endpoint has no error responses.

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

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

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

  response = requests.get(
      'https://service.pcibooking.net/api/payments/paycard/supportedCards'
  )

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

## Response

Returns an alphabetically sorted JSON array of card type code strings. See [Supported Card Types](/reference/card-types) for what each code represents.

<ResponseExample>
  ```json 200 theme={null}
  [
    "AMEX",
    "BC",
    "CartaSi",
    "Dankort",
    "Delta",
    "DinersClub",
    "Discover",
    "Electron",
    "Elo",
    "Hipercard",
    "JCB",
    "Maestro",
    "MasterCard",
    "MC_Alaska",
    "MC_Canada",
    "Switch",
    "Troy",
    "UATP",
    "UnionPay",
    "Visa",
    "enRoute"
  ]
  ```
</ResponseExample>
