> ## 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 Point Conversion

> Get conversion tiers used to convert currency amount to loyalty points.



## OpenAPI

````yaml GET /bitlogin/api/open/v1/loyalty/point-conversion
openapi: 3.1.0
info:
  title: bitLogin Loyalty API
  description: >-
    Loyalty configuration endpoints for bitLogin (integration toggle, point
    conversion, and reward options).
  version: 1.0.0
servers:
  - url: https://api.bitbybit.studio
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /bitlogin/api/open/v1/loyalty/point-conversion:
    get:
      tags:
        - Loyalty - bitLogin
      summary: Get point conversion tiers
      description: Get conversion tiers used to convert currency amount to loyalty points.
      operationId: getPointConversion
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PointConversionResponse'
components:
  schemas:
    PointConversionResponse:
      type: object
      properties:
        companyId:
          type: integer
        tiers:
          type: array
          items:
            $ref: '#/components/schemas/PointConversionTier'
    PointConversionTier:
      type: object
      properties:
        id:
          type: string
        currencyAmount:
          type: number
        points:
          type: integer
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````