Skip to content

Verification

Bakhtarian edited this page May 14, 2026 · 1 revision

Verification

A verification records an identity or eligibility check performed on a Whop user or company — such as KYC, age, or account verification. This resource is read-only.

SDK access

$client->verifications // Matchable\Whop\Resource\VerificationResource

Endpoints

list(array $query = []): array

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

get(string $id): array

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

Example

$verifications = $client->verifications->list(['user_id' => 'user_...']);

$verification = $client->verifications->get('vrf_...');

Reference

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

Clone this wiki locally