---
title: "List Payment Method Domains"
method: GET
path: "/payment_method_domains"
tags: ["Payment Method Domains"]
---

# List Payment Method Domains

`GET /payment_method_domains`

Lists payment method domains. Without `account_id`, returns the caller's own domains and those of every connected account.

## Query parameters

- `account_id` string
- `hostname` string
- `status` 'pending' | 'verified'
- `provider` 'apple'
- `created_before` string, date-time
- `created_after` string, date-time
- `order` 'created_at'
- `direction` 'asc' | 'desc'
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

payment method domains listed

- object
  - `data` PaymentMethodDomain[], required
    - `account_id` string, nullable, required — ID of the account the domain is registered for, prefixed `biz_`.
    - `created_at` string, required — When the domain was created, as an ISO 8601 timestamp.
    - `hostname` string, required — Hostname the checkout is served from (e.g. `checkout.example.com`).
    - `id` string, required — Payment method domain ID, prefixed `pmd_`.
    - `provider` 'apple', required — Wallet provider the domain is registered with.
    - `status` 'pending' | 'verified', required — Verification status. `pending` means the provider could not fetch the domain-association file yet; only `verified` domains show wallet payment methods at checkout.
    - `updated_at` string, required — When the domain was last updated, as an ISO 8601 timestamp.
  - `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
- `403` — Forbidden
- `404` — Resource not found

---

[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)
