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

# List customers

> List all customers for the authenticated merchant



## OpenAPI

````yaml https://api.auctionnow.io/api/alpha/doc get /alpha/merchant/customers
openapi: 3.0.0
info:
  version: alpha
  title: Auction Now API
servers:
  - url: https://api.auctionnow.io/api
    description: Production API
security: []
paths:
  /alpha/merchant/customers:
    get:
      tags:
        - Customers
      summary: List customers
      description: List all customers for the authenticated merchant
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            description: Number of customers to return (default 50, max 100)
          required: false
          description: Number of customers to return (default 50, max 100)
          name: limit
          in: query
        - schema:
            type: string
            description: Cursor from a previous response for pagination
          required: false
          description: Cursor from a previous response for pagination
          name: cursor
          in: query
        - schema:
            type: string
            description: Your Auction Now API key as a Bearer token
            example: Bearer ak_XXXXXXX
          required: true
          description: Your Auction Now API key as a Bearer token
          name: Authorization
          in: header
      responses:
        '200':
          description: A list of customers
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        _id:
                          type: string
                          description: Auction Now's unique identifier for the customer
                        _creationTime:
                          type: number
                          description: >-
                            When the customer was created, in milliseconds since
                            the Unix epoch
                        email:
                          type: string
                          description: The customer's email address
                        name:
                          type: string
                          description: The customer's name
                        userId:
                          type: string
                          description: Associated user ID, if any
                        stripeCustomerId:
                          type: string
                          description: Associated Stripe customer ID, if any
                      required:
                        - _id
                        - _creationTime
                        - email
                        - name
                    description: A list of customers
                  nextCursor:
                    type: string
                    nullable: true
                    description: Cursor for the next page, or null if no more pages
                  hasMore:
                    type: boolean
                    description: Whether there are more pages
                  message:
                    type: string
                  timestamp:
                    type: number
                required:
                  - data
                  - nextCursor
                  - hasMore
                  - timestamp
        '400':
          description: Bad Request - Validation error or invalid input
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  error:
                    anyOf:
                      - type: string
                      - type: object
                        properties:
                          errors:
                            type: array
                            items:
                              type: string
                          properties:
                            type: object
                            properties:
                              data:
                                type: object
                                properties:
                                  errors:
                                    type: array
                                    items:
                                      type: string
                                  properties:
                                    type: object
                                    additionalProperties:
                                      type: object
                                      properties:
                                        errors:
                                          type: array
                                          items:
                                            type: string
                                      required:
                                        - errors
                                required:
                                  - errors
                                  - properties
                            required:
                              - data
                        required:
                          - errors
                          - properties
                required:
                  - message
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  reason:
                    type: string
                required:
                  - error
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  reason:
                    type: string
                required:
                  - error
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````