Skip to main content
GET
/
accounts
List Accounts
curl --request GET \
  --url https://api.whop.com/api/v1/accounts \
  --header 'Authorization: Bearer <token>'
{
  "accounts": [
    {
      "banner_image_url": "<string>",
      "business_type": "<string>",
      "created_at": "<string>",
      "description": "<string>",
      "email": "<string>",
      "id": "<string>",
      "industry_group": "<string>",
      "industry_type": "<string>",
      "logo_url": "<string>",
      "metadata": {},
      "parent_account_id": "<string>",
      "route": "<string>",
      "send_customer_emails": true,
      "social_links": [
        {
          "id": "<string>",
          "title": "<string>",
          "url": "<string>"
        }
      ],
      "target_audience": "<string>",
      "title": "<string>",
      "wallet": {
        "address": "<string>",
        "id": "<string>"
      }
    }
  ],
  "pagination": {
    "current_page": 123,
    "next_page": 123,
    "prev_page": 123,
    "total_count": 123,
    "total_pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.whop.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Query Parameters

page
integer
default:1

The page number to retrieve

per
integer
default:10

The number of resources to return per page. There is a limit of 50 results per page.

Response

accounts listed

accounts
object[]
required
pagination
object
required