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

# List rewards

> Pages your rewards through the Portal API.

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



## OpenAPI

````yaml /openapi/kintra-app.json get /tenant/{tenantId}/rewards
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:
    get:
      tags:
        - Rewards
      summary: List rewards
      description: >-
        Pages your rewards through the Portal API.


        See the [Gateway API entry](/api-reference/gateway/rewards/list-rewards)
        for the full description.
      operationId: ListRewards
      parameters:
        - in: path
          name: tenantId
          required: true
          schema:
            type: string
        - in: query
          name: search
          required: false
          schema:
            type: string
        - in: query
          name: xp_cost_from
          required: false
          schema:
            format: double
            type: number
        - in: query
          name: xp_cost_to
          required: false
          schema:
            format: double
            type: number
        - in: query
          name: is_active
          required: false
          schema:
            type: boolean
        - in: query
          name: status
          required: false
          schema:
            $ref: '#/components/schemas/RewardStatus'
        - in: query
          name: page
          required: false
          schema:
            default: 1
            format: double
            type: number
        - in: query
          name: limit
          required: false
          schema:
            default: 10
            format: double
            type: number
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ApiResponse_IPaginationResponse_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:
    RewardStatus:
      enum:
        - initialized
        - published
      type: string
    ApiResponse_IPaginationResponse_IRewardResponse__:
      additionalProperties: false
      properties:
        data:
          $ref: '#/components/schemas/IPaginationResponse_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
    IPaginationResponse_IRewardResponse_:
      additionalProperties: false
      properties:
        has_next_page:
          type: boolean
        items:
          items:
            $ref: '#/components/schemas/IRewardResponse'
          type: array
        limit:
          format: double
          type: number
        page:
          format: double
          type: number
        total_count:
          format: double
          type: number
        total_pages:
          format: double
          type: number
      required:
        - total_count
        - page
        - limit
        - has_next_page
        - total_pages
        - items
      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
  securitySchemes:
    auth0_jwt:
      bearerFormat: JWT
      description: Auth0 access token
      scheme: bearer
      type: http

````