---
title: "List entries"
method: GET
path: "/entries"
tags: ["Entries"]
---

# List entries

`GET /entries`

Returns a paginated list of waitlist entries for a company, with optional filtering by product, plan, status, and creation date.

Required permissions:
 - `plan:waitlist:read`
 - `member:email:read`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list waitlist entries for.
- `direction` 'asc' | 'desc' — The direction of the sort.
- `order` 'id' | 'created_at' — Which columns can be used to sort.
- `product_ids` string[], nullable — Filter entries to only those for specific products.
- `plan_ids` string[], nullable — Filter entries to only those for specific plans.
- `statuses` EntryStatus[], nullable — Filter entries by their current status.
- `created_before` string, date-time, nullable — Only return entries created before this timestamp.
- `created_after` string, date-time, nullable — Only return entries created after this timestamp.

## Response `200`

A successful response

- object — The connection type for PublicEntry.
  - `data` EntryListItem[], required — A list of nodes.
    - `created_at` string, date-time, nullable, required — The datetime the entry was created.
    - `id` string, required — The unique identifier for the entry.
    - `plan` object, nullable, required — The waitlisted plan that this entry is a signup for.
      - `id` string, required — The unique identifier for the plan.
    - `product` object, nullable, required — The product associated with this entry's waitlisted plan. Null if the plan is not tied to a product.
      - `id` string, required — The unique identifier for the product.
      - `title` string, required — The display name of the product shown to customers on the product page and in search results.
    - `status` 'drafted' | 'pending' | 'approved' | 'denied' | 'any', required — The status of an entry to a waitlist.
    - `user` object, required — The user who submitted this waitlist entry.
      - `email` string, nullable, required — The user's email address. Requires the member:email:read permission to access. Null if not authorized.
      - `id` string, required — The unique identifier for the user.
      - `name` string, nullable, required — The user's display name shown on their public profile.
      - `username` string, required — The user's unique username shown on their public profile.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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