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

# Get Customer Banks

> Retrieve banks associated with a customer email address.



## OpenAPI

````yaml GET /v1/customer/banks
openapi: 3.1.0
info:
  title: Peere Network API
  description: >-
    Comprehensive API documentation for Peere Network's payment platform,
    including Merchant, Bank, and Provider APIs
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.peere.network
    description: Production server
  - url: https://sandbox-api.peere.network
    description: Sandbox server
security:
  - bearerAuth: []
tags:
  - name: Merchant - Account Operations
    description: Merchant account management operations
  - name: Merchant - Find Customer
    description: Customer discovery and lookup operations for merchants
  - name: Merchant - Billing & Payment Operations
    description: Billing and payment processing for merchants
  - name: Merchant - Recurring Billing
    description: Subscription and recurring payment management
  - name: Merchant - Customer Decisions
    description: Customer authorization and decision management
  - name: Merchant - Refund Management
    description: Refund processing and management
  - name: Merchant - Transaction Management
    description: Transaction history and details
  - name: Merchant - Balance & Financial Operations
    description: Balance inquiries and financial operations
  - name: Merchant - Shared Operations
    description: Common operations shared across merchant services
  - name: Bank - Account Operations
    description: Bank account management operations
  - name: Bank - Customer Management
    description: Customer management for banks
  - name: Bank - Customer Device Management
    description: Device linking and management for bank customers
  - name: Bank - Customer Billing & Subscriptions
    description: Billing and subscription management for bank customers
  - name: Bank - Transaction Management
    description: Transaction processing and history for banks
  - name: Bank - Balance & Financial Operations
    description: Balance and financial operations for banks
  - name: Provider - Provider Management
    description: Provider account and profile management
  - name: Provider - Merchant Management
    description: Merchant management for providers
  - name: Provider - Merchant Trust Management
    description: Trust and verification management for merchants
  - name: Provider - Find Customer
    description: Customer discovery operations for providers
  - name: Provider - Billing Operations
    description: Billing operations on behalf of merchants
  - name: Provider - Refund Management
    description: Refund management on behalf of merchants
  - name: Provider - Recurring Billing
    description: Recurring billing management for providers
  - name: Provider - Customer Decisions
    description: Customer decision management for providers
  - name: Provider - Transaction Management
    description: Transaction management for providers
  - name: Provider - Balance & Financial Operations
    description: Balance and financial operations for providers
  - name: Provider - Shared Operations
    description: Common operations for providers
paths:
  /v1/customer/banks:
    get:
      tags:
        - Merchant - Find Customer
        - Provider - Find Customer
      summary: Get Customer Banks
      description: Retrieve banks associated with a customer email address
      parameters:
        - name: email
          in: query
          required: true
          description: Customer email address
          schema:
            type: string
            format: email
      responses:
        '200':
          description: Customer banks retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerBanksResponse'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
components:
  schemas:
    CustomerBanksResponse:
      type: object
      properties:
        statusCode:
          type: integer
          example: 200
        success:
          type: boolean
          example: true
        message:
          type: string
          example: Customer banks retrieved successfully
        data:
          type: object
          properties:
            banks:
              type: array
              items:
                $ref: '#/components/schemas/CustomerBank'
    CustomerBank:
      type: object
      properties:
        bankIcon:
          type: string
          example: https://example.com/bank_icon.png
        bankId:
          type: string
          example: bank_456
        bankName:
          type: string
          example: Example Bank
        accountName:
          type: string
          example: Peter A*****
        accountNumber:
          type: string
          example: '*******4348'
        phrase:
          type: string
          example: phrase_001
    Error:
      type: object
      required:
        - statusCode
        - success
        - message
      properties:
        statusCode:
          type: integer
          example: 400
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Bad request
  responses:
    BadRequestError:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    UnauthorizedError:
      description: Authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````