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

# List supported banks

> Returns supported Nigerian banks for fiat recipient setup and account verification. Refresh this list periodically instead of maintaining a hardcoded bank directory.



## OpenAPI

````yaml /openapi/openapi.json get /partner/wallets/fiat/banks
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/wallets/fiat/banks:
    get:
      tags:
        - Wallets
      summary: List supported banks
      description: >-
        Returns supported Nigerian banks for fiat recipient setup and account
        verification. Refresh this list periodically instead of maintaining a
        hardcoded bank directory.
      operationId: get_partner_wallets_fiat_banks
      responses:
        '200':
          description: List of banks
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/BankResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  - bank_code: '044'
                    institution_code: '000014'
                    institution_name: Access Bank
                status: success
        '400':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: VALIDATION_FAILED
                      message:
                        type: string
                        example: invalid request parameters
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: VALIDATION_FAILED
                  message: invalid request parameters
                status: error
      security: []
components:
  schemas:
    BankResponse:
      type: object
      description: >-
        Supported bank metadata for fiat recipient setup and account
        verification.
      required:
        - institution_code
        - institution_name
      properties:
        bank_code:
          type:
            - string
            - 'null'
          description: Bank code (CBN code)
          example: '044'
        institution_code:
          type: string
          description: Institution code
          example: '000014'
        institution_name:
          type: string
          description: Bank name
          example: Access Bank

````