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

# Get Bank List

> Retrieve list of supported banks for fund transfers

Retrieve list of supported banks for fund transfers.

## Endpoint

<Badge>GET</Badge> `/pms/api/external/request/wallet/banks/`

## Response

### 200

**Media type:** `application/json`

```json theme={null}
{
  "status": true,
  "message": "string",
  "data": [
    {
      "bank_code": "string",
      "bank_name": "string",
      "bank_short_name": "string",
      "bank_logo_url": "string",
      "is_active": true
    }
  ]
}
```

## Response Fields

<ResponseField name="status" type="boolean">
  Request status indicator
</ResponseField>

<ResponseField name="message" type="string">
  Response message
</ResponseField>

<ResponseField name="data" type="array">
  List of supported banks
</ResponseField>

<ResponseField name="data[].bank_code" type="string">
  Unique bank code used for transfers
</ResponseField>

<ResponseField name="data[].bank_name" type="string">
  Full bank name
</ResponseField>

<ResponseField name="data[].bank_short_name" type="string">
  Short bank display name
</ResponseField>

<ResponseField name="data[].bank_logo_url" type="string">
  URL to bank logo image
</ResponseField>

<ResponseField name="data[].is_active" type="boolean">
  Whether the bank is currently active for transfers
</ResponseField>


## OpenAPI

````yaml GET /pms/api/external/request/wallet/banks/
openapi: 3.1.0
info:
  title: PayVessel API
  description: >-
    PayVessel API for accepting payments, sending money, verifying identities,
    and managing wallets
  version: 1.0.0
servers:
  - url: https://api.payvessel.com
  - url: https://sandbox.payvessel.com
security:
  - {}
paths:
  /pms/api/external/request/wallet/banks/:
    get:
      tags:
        - Transfers
      summary: Get Bank List
      description: Retrieve list of supported banks for fund transfers
      parameters:
        - name: api-key
          in: header
          description: Your Payvessel public API key
          required: true
          schema:
            type: string
        - name: api-secret
          in: header
          description: Your Payvessel secret
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of supported banks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBankListResponse'
              example:
                status: true
                message: Banks retrieved successfully
                data:
                  - bank_code: '058'
                    bank_name: Guaranty Trust Bank
                    bank_short_name: GTBank
                    bank_logo_url: https://assets.payvessel.com/banks/gtbank.png
                    is_active: true
components:
  schemas:
    GetBankListResponse:
      type: object
      properties:
        status:
          type: boolean
          description: Request status indicator
        message:
          type: string
          description: Response message
        data:
          type: array
          items:
            type: object
            properties:
              bank_code:
                type: string
                description: Unique bank code used for transfers
              bank_name:
                type: string
                description: Full bank name
              bank_short_name:
                type: string
                description: Short bank display name
              bank_logo_url:
                type: string
                description: URL to bank logo image
              is_active:
                type: boolean
                description: Whether the bank is currently active for transfers

````