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

# Search customers



## OpenAPI

````yaml get /v1/customers/search
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/search:
    get:
      summary: Search customers
      parameters:
        - name: query
          in: query
          schema:
            type: string
        - name: type
          in: query
          schema:
            type: string
            enum:
              - individual
              - business
        - name: status
          in: query
          schema:
            type: string
            enum:
              - active
              - inactive
              - pending
              - blocked
        - name: country
          in: query
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CustomerResponse'
                  total:
                    type: integer
                  page:
                    type: integer
                  limit:
                    type: integer
components:
  schemas:
    CustomerResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        phone:
          type: string
        date_of_birth:
          type: string
        nationality:
          type: string
        address:
          $ref: '#/components/schemas/Address'
        kyc_status:
          type: string
        verification_level:
          type: string
        metadata:
          type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Address:
      type: object
      properties:
        street:
          type: string
        city:
          type: string
        postal_code:
          type: string
        country:
          type: string

````