> ## 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.

# Reward Redemption Summary List

> Get aggregate redeemed count and points by reward option.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/rewards/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/rewards/redemptions/summary:
    get:
      tags:
        - Loyalty - Customer
      summary: Get total redemptions by reward option
      description: Get aggregate redeemed count and points by reward option.
      operationId: getRewardRedemptionSummaryList
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RewardSummary'
components:
  schemas:
    RewardSummary:
      type: object
      properties:
        reward:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
        totalRedeemedCount:
          type: integer
        totalRedeemedPoints:
          type: string
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````