Skip to content

SetupIntent

Bakhtarian edited this page May 14, 2026 · 1 revision

Setup Intent

A setup intent represents the process of collecting and saving a customer's payment method for future charges on Whop — without immediately taking a payment. This resource is read-only.

SDK access

$client->setupIntents // Matchable\Whop\Resource\SetupIntentResource

Endpoints

list(array $query = []): array

HTTP GET setup-intents
Does Lists setup intents.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET setup-intents/{id}
Does Retrieves a single setup intent by ID.
Parameters $id — the setup intent ID.
Returns array

Example

$intents = $client->setupIntents->list();

$intent = $client->setupIntents->get('seti_...');

Reference

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

Clone this wiki locally