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

> Get redeemed totals and used-at-checkout totals for one reward option.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/rewards/{rewardOptionId}/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/{rewardOptionId}/redemptions/summary:
    get:
      tags:
        - Loyalty - Customer
      summary: Get one reward option redemption summary
      description: Get redeemed totals and used-at-checkout totals for one reward option.
      operationId: getRewardRedemptionSummary
      parameters:
        - name: rewardOptionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/RewardSummaryDetail'
components:
  schemas:
    RewardSummaryDetail:
      type: object
      properties:
        reward:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
        totalRedeemedCount:
          type: integer
        totalRedeemedPoints:
          type: string
        totalUsedAtCheckoutCount:
          type: integer
        totalUsedAtCheckoutPoints:
          type: string
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````