List all Reviews

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

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.

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",
      "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
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
Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!