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

# List banks

> Payable banks, synced from the provider. Pick a `bank_uuid` here before POST /payouts/bank.



## OpenAPI

````yaml /openapi.json get /banks
openapi: 3.1.0
info:
  title: Jenzy Hermes Client API
  version: 1.0.0
  description: >-
    Draw down your prefunded MWK balance as payouts to Malawian banks and mobile
    money. Authenticate with your `jz_live_…` API key as a bearer token.
servers:
  - url: https://api.jenzy.com/v1
    description: Production
security: []
paths:
  /banks:
    get:
      summary: List banks
      description: >-
        Payable banks, synced from the provider. Pick a `bank_uuid` here before
        POST /payouts/bank.
      responses:
        '200':
          description: The bank reference list, with when it was fetched.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BankList'
        '401':
          description: Missing, malformed, or revoked API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '503':
          description: Reference data has never been synced — retry later.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BankList:
      type: object
      properties:
        banks:
          type: array
          items:
            $ref: '#/components/schemas/Bank'
        fetched_at:
          type: string
          format: date-time
          description: When this list was last synced from the provider.
      required:
        - banks
        - fetched_at
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - validation_error
                - unauthorized
                - forbidden
                - not_found
                - conflict
                - rate_limited
                - internal_error
                - unknown_bank
                - unknown_operator
                - invalid_mobile_number
                - invalid_account_number
                - service_unavailable
                - insufficient_funds
                - rail_disabled
                - amount_limit_exceeded
                - org_limit_exceeded
              description: >-
                Stable identifier a client may branch on — never renamed or
                removed.
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
    Bank:
      type: object
      properties:
        bank_uuid:
          type: string
          description: The identifier POST /payouts/bank takes as `bank_uuid`.
        name:
          type: string
          example: National Bank of Malawi
      required:
        - bank_uuid
        - name
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: 'Your Jenzy API key: `Authorization: Bearer jz_live_…`'

````