---
title: "List Apps"
method: GET
path: "/apps"
tags: ["Apps"]
---

# List Apps

`GET /apps`

Lists apps on the Whop platform: the app store's live apps, or — with `account_id` and developer access to that account — every app the account owns.

## Query parameters

- `account_id` string
- `app_type` 'b2b_app' | 'b2c_app' | 'company_app' | 'component' | 'website'
- `view_type` 'hub' | 'discover' | 'dash' | 'dashboard' | 'analytics' | 'skills' | 'openapi'
- `verified_apps_only` boolean
- `query` string
- `order` 'created_at' | 'discoverable_at' | 'total_installs_last_30_days' | 'total_installs_last_7_days'
- `direction` 'asc' | 'desc'
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

apps listed

- object
  - `data` AppListItem[], required
    - `account` AccountSummary, required
      - `id` string, required — Account ID, prefixed `biz_`.
      - `title` string, required — Account display name.
    - `app_type` 'b2b_app' | 'b2c_app' | 'company_app' | 'component' | 'website', required — The type of end-user the app is built for.
    - `base_url` string, nullable, required — Production base URL where the app is hosted, or `null` if none is configured.
    - `creator` AppCreator, required
      - `id` string, required — User ID, prefixed `user_`.
      - `name` string, nullable, required — Display name.
      - `username` string, required — Public username.
    - `dashboard_path` string, nullable, required — URL path for the account dashboard view, or `null` when not configured.
    - `description` string, nullable, required — Short description shown in listings and search results, or `null` if none has been set.
    - `discover_path` string, nullable, required — URL path for the discover view, or `null` when not configured.
    - `domain_id` string, required — Subdomain identifier for the app's proxied URL, forming https://{domain_id}.apps.whop.com.
    - `experience_path` string, nullable, required — URL path for the member-facing hub view, or `null` when not configured.
    - `hosted_url` string, nullable, required — Full URL where the app's hosted web build is served, or `null` if no route is claimed.
    - `icon` AppIcon, required
      - `url` string, required — Icon image URL. Always present — the default app icon when none is uploaded.
    - `id` string, required — App ID, prefixed `app_`.
    - `name` string, required — Display name shown on the app store and in experience navigation.
    - `openapi_path` string, nullable, required — URL path to the app's OpenAPI spec file, or `null` when not configured.
    - `origin` string, nullable, required — Full origin URL of the app's proxied domain, for example https://ab1c2d3e4f.apps.whop.com.
    - `route` string, nullable, required — Claimed subdomain route where hosted web builds are served (`myapp` for myapp.whop.app), or `null` if no route is claimed.
    - `skills_path` string, nullable, required — URL path to the app's skills directory, or `null` when not configured.
    - `status` 'live' | 'unlisted' | 'hidden', required — Visibility on the Whop app store: `live` is publicly discoverable, `unlisted` is accessible only via direct link, `hidden` is not visible anywhere.
    - `verified` boolean, required — Whether the app has been verified by Whop and is eligible for the featured apps section.
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `400` — Invalid Parameters
- `401` — Unauthorized

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/866821546d67/schema)
