Getting started
Authentication
Resources
- Access Passes
- Attachments
- Authentication
- Chats
- Direct Messages
- Experiences
- Forums
- Notifications
- Payments
- Users
Experiences
List Users For Experience
Fetch an experience.
import { whopApi } from "@/lib/whop-api";
const result = await whopApi.listUsersForExperience({
// The ID of the experience
experienceId: "exp_XXXXXXXX" /* Required! */,
after: "pageInfo.endCursor",
before: "pageInfo.startCursor",
direction: "asc" /* Valid values: asc | desc */,
first: 10,
});
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.