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

# Get points settings

> Retrieves the configuration for the account's points program.

export const scope_0 = "points_settings:read"

<Callout icon="key" iconType="regular">
  This endpoint requires the **{scope_0}** scope.
</Callout>

If the account does not have an active points program, a `404` response is returned.


## OpenAPI

````yaml schemas/rest-api.json GET /points_settings
openapi: 3.1.0
info:
  title: Smile.io REST API
  version: 1.0.0
  description: A RESTful interface for interacting with Smile.io loyalty programs.
servers:
  - url: https://api.smile.io/v1
security:
  - bearerAuth: []
paths:
  /points_settings:
    get:
      tags:
        - Points Settings
      summary: Get points settings
      description: Retrieves the configuration for the account's points program.
      operationId: get__points_settings
      responses:
        '200':
          description: The points settings were successfully retrieved.
          content:
            application/json:
              schema:
                type: object
                properties:
                  points_settings:
                    $ref: '#/components/schemas/PointsSettings'
components:
  schemas:
    PointsSettings:
      type: object
      properties:
        points_label:
          type: object
          properties:
            one:
              type: string
              example: Coin
              description: The singular unit for a point.
            other:
              type: string
              example: Coins
              description: The unit for zero or many points.
          description: The branding of the account's points currency.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````