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

# Get Loyalty Wallet

> Get points balance and wallet lifetime counters.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/customers/{customerId}/wallet
openapi: 3.1.0
info:
  title: Customer Loyalty API
  description: Loyalty wallet, redemption, and history endpoints from customer service.
  version: 1.0.0
servers:
  - url: https://api.bitbybit.studio
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /customer/api/open/v1/loyalty/customers/{customerId}/wallet:
    get:
      tags:
        - Loyalty - Customer
      summary: Get customer loyalty wallet
      description: Get points balance and wallet lifetime counters.
      operationId: getLoyaltyWallet
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/LoyaltyWallet'
components:
  schemas:
    LoyaltyWallet:
      type: object
      properties:
        id:
          type: string
        companyId:
          type: integer
        customerId:
          type: string
        availablePoints:
          type: string
        reservedPoints:
          type: string
        lifetimeEarnedPoints:
          type: string
        lifetimeBurnedPoints:
          type: string
        version:
          type: string
        lastLedgerAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````