---
title: "List payment rules"
method: GET
path: "/payment_rules"
tags: ["Payment Rules"]
---

# List payment rules

`GET /payment_rules`

## Query parameters

- `account_id` string
- `status` 'active' | 'inactive' | 'deleted'
- `action` 'allow' | 'block' | 'review' | 'enforce_3ds'
- `order` 'created_at'
- `direction` 'asc' | 'desc'
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

A list of payment rules

- object
  - `data` PaymentRule[], required
    - `account_id` string, required — Account ID, prefixed `biz_`.
    - `action` 'allow' | 'block' | 'review' | 'enforce_3ds', required — What this account's rule requests when every condition matches. One applicable account-rule action wins, in this order: `allow`, `block`, `review`, `enforce_3ds`. An `allow` overrides this account's other rules, never Whop's own fraud controls. A `review` requests authorization without capture for an eligible on-session card payment through Whop Payments. Automatic capture is scheduled for 48 hours after authorization; capture or void the payment before then to decide sooner. Capture may complete later or fail. Review is skipped for unsupported methods, off-session payments, and payments already configured for manual capture. An `enforce_3ds` is skipped when the account rule cannot apply a challenge. Other 3DS requirements still apply.
    - `conditions` PaymentRuleConditions, required
      - `all` PaymentRuleCondition[], required
        - `field` 'risk_score' | 'amount_in_usd' | 'card_country' | 'customer_email' | 'ip_address', required — The payment attribute this condition reads.
        - `operator` 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'not_in' | 'contains' | 'starts_with' | 'ends_with' | 'in_cidr', required — How the payment attribute is compared to the value.
        - `value` union, required — The value to compare against. A number for `risk_score`, a string for the other fields, and an array of strings for the `in` and `not_in` operators.
          - integer
          - string
          - string[]
    - `created_at` string, required — When the rule was created, as an ISO 8601 timestamp.
    - `deleted_at` string, nullable, required — When the rule was deleted, as an ISO 8601 timestamp. `null` unless `status` is `deleted`.
    - `id` string, required — Payment rule ID, prefixed `prule_`.
    - `metadata` object, required — Custom string-to-string values for your integration. Maximum 50 keys, 40 characters per key, 500 characters per value.
    - `name` string, required — A name for this rule. Up to 255 characters.
    - `status` 'active' | 'inactive' | 'deleted', required — Whether the rule is applied to payments. A `deleted` rule is kept so the payments it already decided still name it.
    - `updated_at` string, required — When the rule was last changed, 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

## Changes

> 62 revisions in range; 1 not diffed.

- **2026-09-17** `ef86d14ef691` — 4 warning, 1 info
  - added the new `amount_in_usd` enum value to the `data/items/conditions/all/items/field` response property for the response status `200`
  - added the new `in_cidr` enum value to the `data/items/conditions/all/items/operator` response property for the response status `200`
  - added the new `ip_address` enum value to the `data/items/conditions/all/items/field` response property for the response status `200`
  - added the new `review` enum value to the `data/items/action` response property for the response status `200`
  - …1 more
- **2026-09-16** `ff3a76573563` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/whop/apis/whop-api/changes/payment_rules/get.md)

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc.dev/whop/apis/whop-api/revisions/076176906e3f?raw)
