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

# Get a guest

> Retrieve a single Luma event guest by ID with luma.events.guests.get(eventId, guestId), returning RSVP status, registration info, and check-in data.

<Badge color="purple">SDK</Badge> `luma.events.guests.get(eventId: string, guestId: string): Promise<Guest>`

Returns a single guest by ID.

<RequestExample>
  ```typescript Example theme={null}
  const guest = await luma.events.guests.get("evt-abc123", "gst-xyz789");
  console.log(guest.email);
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "api_id": "gst-xyz789",
    "email": "jane@example.com",
    "name": "Jane Doe",
    "approval_status": "approved",
    "checked_in_at": null
  }
  ```
</ResponseExample>

### Parameters

<ParamField path="eventId" type="string" required>
  Event `api_id` from `events.list()`.
</ParamField>

<ParamField path="guestId" type="string" required>
  Guest `api_id` from `events.guests.list()`.
</ParamField>

### Test it

Use an event and guest ID from your calendar — run `events.list()` and `events.guests.list()` to find them:

```typescript theme={null}
const eventId = "evt-abc123";
const guestId = "gst-xyz789";

const guest = await luma.events.guests.get(eventId, guestId);
console.log(guest.email);
```
