List all Reviews

Use secret API key to retrieve a list of all Reviews resources.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
🚧

Account configuration is required before testing transactions

If you are interested in access to this feature, please contact [email protected]!

Retrieves a paginated list of all Review resources created by the fraud detection system. Each review represents a transaction that was flagged for manual investigation due to matching a custom rule or receiving a medium/high risk score.

This endpoint allows you to monitor all suspicious payments, track their review status, and obtain relevant details such as risk score, reason for flagging, and associated payment intent. Use this endpoint to power review dashboards or automate further analysis of flagged transactions.

Notes: If you do not specify the dates when calling this endpoint, it will default to the last 7 days.

Example Response

{
  "has_more": false,
  "data": [
    {
      "id": "frr_abcdefg123456",
      "type": "fraud.review",
      "score": 535,
      "risk_level": "medium",
      "organization_id": "org_abcdefg123456",
      "payment_intent_id": "pi_abcdefg123456",
      "score_id": "frs_abcdefg123456",
      "customer_email": "[email protected]",
      "payment_id": "pay_abcdefg123456",
      "livemode": true,
      "closed": false,
      "reason": "rule",
      "rule_id": "frl_abcdefg123456",
      "opened_reason": "rule",
      "closed_reason": null,
      "created_at": "2025-06-27T01:46:09.314Z",
      "updated_at": null
    }
  ]
}

attributedescription
idUnique ID of the Review resource
typeResource type (fraud.review)
scoreRisk score assigned to the transaction (0–1000)
risk_levelRisk level classification (low, medium, high)
organization_idID of the organization that owns the review
payment_intent_idID of the associated payment intent
payment_idID of the associated payment
customer_emailCustomer's email address used in billing information
score_idID of the associated fraud score. See Scores documentation
livemodeWhether the review occurred in live mode (true or false)
closedWhether the review has been closed
reasonThe trigger for the review (e.g., rule)
rule_idID of the rule that triggered the review
opened_reasonReason why the review was opened
closed_reasonReason why the review was closed (if closed)
created_atTimestamp when the review was created (ISO8601)
updated_atTimestamp when the review was last updated
Query Params
string

A cursor for use in pagination. after is a resource ID that defines your place in the list. For example, if you make a list request and receive 10 resources, ending with some_resource_id, your subsequent call can include after=some_resource_id in order to fetch the next page of the list.

integer
Defaults to 10

Limit of resources to return. If not passed, the default limit is 10.

string
enum
Defaults to open

Status of the review, open or closed.

Allowed:
string
enum

Risk level: low, medium or high.

Allowed:
string

Associated rule id applied to the transaction.

string

Associated payment intent.

string

Associated payment.

string

Filter the results where created_at is after the begin_date. The format is ISO8601, e.g., 2025-09-22T20:05:22Z.

string

Filter the results where created_at is before the end_date. The format is ISO8601, e.g., 2025-09-22T20:05:22Z.

string
enum
Defaults to fraud.review

Filter review resources based on the type: fraud.review, fraud.blocked, fraud.allowed.

Allowed:
Response

Language
Credentials
Basic
base64
:
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json