> ## 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 Reward Options

> Returns reward options available for redemption in customer service format.



## OpenAPI

````yaml GET /customer/api/open/v1/loyalty/reward-options
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/reward-options:
    get:
      tags:
        - Loyalty - Customer
      summary: Get reward options for customer loyalty
      description: >-
        Returns reward options available for redemption in customer service
        format.
      operationId: getCustomerLoyaltyRewardOptions
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RewardOptionView'
components:
  schemas:
    RewardOptionView:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        pointsRequired:
          type: integer
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````