---
title: "Fetch a guest's loyalty points"
method: GET
path: "/guests/{guestId}/loyalty-points"
tags: ["Loyalty Program"]
---

# Fetch a guest's loyalty points

`GET /guests/{guestId}/loyalty-points`

## Overview

Get a guest's current available points and upcoming points (points pending from confirmed bookings).

## When to Use

- **Points display** - Show points balance on guest account pages
- **Points checking** - Quick lookup of available points
- **Pending points** - Display points that will be awarded after stays
- **Balance verification** - Verify points before redemption

## What You Get

- **Current points** - Points available for immediate redemption
- **Upcoming points** - Points that will be awarded from confirmed bookings

## Quick Start

Provide the guest ID in the URL path. Returns both current and upcoming points balances.

## Path parameters

- `guestId` integer, required

## Response `200`

OK

- object
  - `data` object
    - `currentPoints` integer
    - `upcomingPoints` integer

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/liteapi/apis/api-search.md) · [All operations](https://skmtc.net/liteapi/apis/api-search/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/liteapi/api-search/versions/315ba2a4dcf4/schema)
