> ## 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 Redeemed Points Summary

> Get total redeemed points and total redemption count for one customer.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/customers/{customerId}/redemptions/summary
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}/redemptions/summary:
    get:
      tags:
        - Loyalty - Customer
      summary: Get total redeemed points by customer
      description: Get total redeemed points and total redemption count for one customer.
      operationId: getCustomerRedeemedPointsSummary
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      customerId:
                        type: string
                      totalRedeemedPoints:
                        type: string
                      totalRedemptionCount:
                        type: integer
components:
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````