Skip to content
Bakhtarian edited this page May 14, 2026 · 1 revision

Entry

An entry is a submission to a Whop form, application, or giveaway that a seller can review and either approve or deny. The SDK lets you list and read entries and act on their approval state.

SDK access

$client->entries // Matchable\Whop\Resource\EntryResource

Endpoints

list(array $query = []): array

HTTP GET entries
Does Lists entries.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET entries/{id}
Does Retrieves a single entry by ID.
Parameters $id — the entry ID.
Returns array

approve(string $id): array

HTTP POST entries/{id}/approve
Does Approves an entry.
Parameters $id — the entry ID.
Returns array

deny(string $id): array

HTTP POST entries/{id}/deny
Does Denies an entry.
Parameters $id — the entry ID.
Returns array

Note: there is no create or delete — entries are submitted by applicants, not created through this resource.

Example

$client->entries->approve('entry_...');

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally