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

# Get a reward

> Reads one reward through the Portal API.

See the [Gateway API entry](/api-reference/gateway/rewards/get-a-reward) for the full description.



## OpenAPI

````yaml /openapi/kintra-app.json get /tenant/{tenantId}/rewards/{rewardId}
openapi: 3.0.0
info:
  description: >-
    Tenant portal API for the Kintra loyalty platform. Requests are
    authenticated with an Auth0 bearer token and address a tenant by id in the
    path.
  title: Kintra Portal API
  version: 1.0.0
servers:
  - description: Production environment
    url: https://api.kintra.io/api/v1
security: []
paths:
  /tenant/{tenantId}/rewards/{rewardId}:
    get:
      tags:
        - Rewards
      summary: Get a reward
      description: >-
        Reads one reward through the Portal API.


        See the [Gateway API entry](/api-reference/gateway/rewards/get-a-reward)
        for the full description.
      operationId: GetRewardById
      parameters:
        - in: path
          name: tenantId
          required: true
          schema:
            type: string
        - in: path
          name: rewardId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_IRewardResponse_'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Tenant not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Internal server error
      security:
        - auth0_jwt: []
components:
  schemas:
    ApiResponse_IRewardResponse_:
      additionalProperties: false
      properties:
        data:
          $ref: '#/components/schemas/IRewardResponse'
        errors:
          items:
            properties:
              message:
                type: string
              path:
                type: string
            required:
              - path
              - message
            type: object
          type: array
        message:
          type: string
        success:
          type: boolean
      required:
        - success
      type: object
    ApiResponse_null_:
      additionalProperties: false
      properties:
        data:
          enum:
            - null
          nullable: true
          type: number
        errors:
          items:
            properties:
              message:
                type: string
              path:
                type: string
            required:
              - path
              - message
            type: object
          type: array
        message:
          type: string
        success:
          type: boolean
      required:
        - success
      type: object
    IRewardResponse:
      additionalProperties: false
      properties:
        created_at:
          format: date-time
          type: string
        description:
          nullable: true
          type: string
        id:
          type: string
        is_active:
          type: boolean
        metadata: {}
        min_tier_id:
          description: >-
            Optional tier gate — reward shown/redeemable only at/above this
            tier. `null` = all tiers.
          nullable: true
          type: string
        onchain_asset_id:
          type: string
        status:
          anyOf:
            - $ref: '#/components/schemas/RewardStatus'
            - type: string
        tenant_id:
          type: string
        title:
          type: string
        updated_at:
          format: date-time
          type: string
        xp_cost:
          type: string
      required:
        - id
        - tenant_id
        - onchain_asset_id
        - title
        - xp_cost
        - is_active
        - status
      type: object
    RewardStatus:
      enum:
        - initialized
        - published
      type: string
  securitySchemes:
    auth0_jwt:
      bearerFormat: JWT
      description: Auth0 access token
      scheme: bearer
      type: http

````