Skip to content

Company

Bakhtarian edited this page May 14, 2026 · 2 revisions

Company

A company (also called a business or whop, ID prefix biz_) is the top-level seller account on the Whop platform. It owns products, plans, members, payments, and most other resources in the API.

SDK access

$client->companies // Matchable\Whop\Resource\CompanyResource

Endpoints

create(array $data): Company

HTTP POST companies
Does Creates a new company.
Parameters $data — company attributes (e.g. name, settings).
Returns Matchable\Whop\Dto\Company\Company (typed DTO). A response missing a required field raises MissingArgumentsException.

get(string $id): Company

HTTP GET companies/{id}
Does Retrieves a single company by ID.
Parameters $id — the company ID (e.g. biz_...).
Returns Matchable\Whop\Dto\Company\Company (typed DTO). A response missing a required field raises MissingArgumentsException.

list(array $query = []): array

HTTP GET companies
Does Lists companies.
Parameters $query — optional filters / pagination.
Returns array — the decoded API response.

Example

$company = $client->companies->get('biz_...');

Reference

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

Clone this wiki locally