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

# getCardNetworkImage

This method allows you to obtain the image associated with a particular card network by passing in the card network type as an argument.

```typescript TYPESCRIPT theme={"dark"}
async getCardNetworkImageURL(cardNetwork: string): Promise<string>
```

<Expandable title="Parameters" defaultOpen>
  <ResponseField name="cardNetwork" type="string" required>
    <Expandable title="cases" defaultOpen>
      <ResponseField name="OTHER" />

      <ResponseField name="VISA" />

      <ResponseField name="MASTERCARD" />

      <ResponseField name="AMEX" />

      <ResponseField name="DINERS_CLUB" />

      <ResponseField name="DISCOVER" />

      <ResponseField name="JCB" />

      <ResponseField name="UNIONPAY" />

      <ResponseField name="MAESTRO" />

      <ResponseField name="ELO" />

      <ResponseField name="MIR" />

      <ResponseField name="HIPER" />

      <ResponseField name="HIPERCARD" />

      <ResponseField name="CARTES_BANCAIRES" />
    </Expandable>
  </ResponseField>
</Expandable>
