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

# Get customers



## OpenAPI

````yaml https://app.boothzen.com/api/v1/openapi.json get /customers
openapi: 3.1.0
info:
  title: BoothZen API v1
  version: '1.0'
  description: >-
    Public REST API v1 for BoothZen booking management. Authenticate with
    `Authorization: Bearer bz_live_…` or `bz_test_…` keys.
servers:
  - url: https://api.boothzen.com/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /customers:
    get:
      tags:
        - Customer
      operationId: customer.index
      parameters:
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: string
                  has_more:
                    type: boolean
                  next_cursor:
                    type: string
                required:
                  - data
                  - has_more
                  - next_cursor
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Bearer token: `bz_live_<32chars>` (live mode) or `bz_test_<32chars>`
        (test mode). Obtain via BoothZen admin → Settings → API Keys.
      scheme: bearer
      bearerFormat: BZ-API-Key

````