---
title: "Get Banks"
api: "GET /api/v1/utils/banks"
description: "Fetch the list of supported banks for a specific country."
---

### Query Parameters

<ParamField query="country" type="string" default="NG">
  The ISO country code (e.g., 'NG' for Nigeria).
</ParamField>

### Response

<ResponseField name="Array" type="object[]">
  <Expandable title="properties">
    <ResponseField name="code" type="string">
      The bank's unique code.
    </ResponseField>
    <ResponseField name="name" type="string">
      Common name of the bank.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
```bash
curl --request GET \
     --url https://your-api-domain.com/api/v1/utils/banks?country=NG \
     --header 'x-api-key: <api-key>'
```
</RequestExample>
