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

> Reads one redemption through the Portal API.

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



## OpenAPI

````yaml /openapi/kintra-app.json get /tenant/{tenantId}/redemptions/{redemption_id}
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}/redemptions/{redemption_id}:
    get:
      tags:
        - Redemptions
      summary: Get a redemption
      description: >-
        Reads one redemption through the Portal API.


        See the [Gateway API
        entry](/api-reference/gateway/redemptions/get-a-redemption) for the full
        description.
      operationId: GetRedemptionById
      parameters:
        - in: path
          name: tenantId
          required: true
          schema:
            type: string
        - in: path
          name: redemption_id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_IRedemptionResponseDto_'
          description: ''
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_null_'
          description: Internal server error
      security:
        - auth0_jwt: []
components:
  schemas:
    ApiResponse_IRedemptionResponseDto_:
      additionalProperties: false
      properties:
        data:
          $ref: '#/components/schemas/IRedemptionResponseDto'
        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
    IRedemptionResponseDto:
      additionalProperties: false
      properties:
        created_at:
          format: date-time
          nullable: true
          type: string
        id:
          type: string
        reward:
          allOf:
            - $ref: '#/components/schemas/IRedemptionRewardBriefDto'
          description: >-
            Joined reward (id, title, description); null when the reward row is
            missing.
          nullable: true
        reward_id:
          type: string
        status:
          anyOf:
            - $ref: '#/components/schemas/RedemptionStatus'
            - type: string
        tenant:
          $ref: '#/components/schemas/ITenantBriefDto'
          description: >-
            Joined tenant (id, name, slug) — admin projections; optional
            elsewhere.
        tenant_id:
          type: string
        updated_at:
          format: date-time
          nullable: true
          type: string
        user:
          $ref: '#/components/schemas/IUserBriefDto'
          description: >-
            Joined when `include_user_brief` is requested (admin / tenant portal
            redemptions).
        user_id:
          type: string
        xp_spent:
          type: string
      required:
        - id
        - tenant_id
        - user_id
        - reward_id
        - status
      type: object
    IRedemptionRewardBriefDto:
      additionalProperties: false
      description: >-
        Joined reward summary so list/detail surfaces can show the reward name
        instead of a raw UUID.
      properties:
        description:
          nullable: true
          type: string
        id:
          type: string
        is_active:
          description: Whether the reward is currently active/redeemable.
          type: boolean
        onchain_asset:
          allOf:
            - $ref: '#/components/schemas/IRedemptionRewardOnchainAssetBriefDto'
          description: >-
            The on-chain asset the reward is denominated in (KXP, chain,
            contract).
          nullable: true
        status:
          anyOf:
            - $ref: '#/components/schemas/RewardStatus'
            - type: string
          description: >-
            Reward publish state at the time of read (`draft` / `published` /
            …).
        title:
          type: string
        xp_cost:
          description: >-
            Reward's listed XP cost as a string (signed bigint contract); the
            redemption's actual spend is `xp_spent`.
          type: string
      required:
        - id
        - title
      type: object
    RedemptionStatus:
      enum:
        - initialized
        - pending
        - succeeded
        - failed
        - canceled
      type: string
    ITenantBriefDto:
      additionalProperties: false
      description: Minimal tenant label for nested list/detail payloads (id, name, slug).
      properties:
        id:
          type: string
        name:
          type: string
        slug:
          type: string
      required:
        - id
        - name
        - slug
      type: object
    IUserBriefDto:
      additionalProperties: false
      description: Minimal user label for nested redemption-style payloads.
      properties:
        email:
          type: string
        id:
          type: string
        username:
          type: string
      required:
        - id
        - username
        - email
      type: object
    IRedemptionRewardOnchainAssetBriefDto:
      additionalProperties: false
      description: >-
        Joined on-chain asset the reward pays out in (e.g. KXP / Kintra XP).
        Matches the redemption reward join.
      properties:
        asset_address:
          type: string
        chain_id:
          format: double
          type: number
        decimals:
          format: double
          nullable: true
          type: number
        id:
          type: string
        name:
          nullable: true
          type: string
        symbol:
          nullable: true
          type: string
        type:
          type: string
      required:
        - id
      type: object
    RewardStatus:
      enum:
        - initialized
        - published
      type: string
  securitySchemes:
    auth0_jwt:
      bearerFormat: JWT
      description: Auth0 access token
      scheme: bearer
      type: http

````