---
title: "Fetch all guests"
method: GET
path: "/guests"
tags: ["Loyalty Program"]
---

# Fetch all guests

`GET /guests`

## Overview

Retrieve a complete list of all guests enrolled in your loyalty program with their points balance and booking history.

## When to Use

- **Guest management** - View all loyalty program members
- **Points administration** - Check points balances across all guests
- **Customer support** - Look up guest information quickly
- **Reporting** - Generate lists of loyalty program participants

## What You Get

- **Guest profiles** - Name, email, phone number for each guest
- **Points balance** - Current points and upcoming points (pending from bookings)
- **Booking history** - List of booking IDs associated with each guest
- **Account metadata** - Creation and update timestamps

## Quick Start

No parameters required. Returns all guests with their loyalty program details.

## Response `200`

OK

- object
  - `data` object[]
    - `id` integer
    - `email` string
    - `firstName` string
    - `lastName` string
    - `phoneNumber` string
    - `points` integer
    - `upcomingPoints` integer
    - `bookings` string[]
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
    - `deletedAt` string, date-time

---

[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)
