Get a Review
A review with its decisions, approvals, notes and activity. Notes appear as presence only: their text is never returned by the API. Another account’s review is a 404.
GET
/
v1
/
intelligence
/
reviews
/
{id}
Retrieve a review
curl --request GET \
--url https://api.antonpayments.com/v1/intelligence/reviews/{id} \
--header 'Authorization: Bearer <token>' \
--header 'DPoP: <api-key>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>', DPoP: '<api-key>'}};
fetch('https://api.antonpayments.com/v1/intelligence/reviews/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.antonpayments.com/v1/intelligence/reviews/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"DPoP: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.antonpayments.com/v1/intelligence/reviews/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("DPoP", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"id": "irv_01JB8QK2",
"number": "RV-0142",
"kind": "possible_sanctions_match",
"priority": "high",
"status": "open",
"source": "evaluation",
"subject": {
"type": "person",
"display": "V*** S***",
"reference": "cust_7731"
},
"opened_by": {
"type": "user",
"id": "<string>"
},
"overdue": true,
"created_at": "2026-04-15T14:30:00Z",
"updated_at": "2026-04-15T14:30:00Z",
"matched_entries": 123,
"opening_note_recorded": true,
"decisions": [
{
"id": "ird_01JB9A",
"decision": "waiting_on_customer",
"reason_code": "dob_needed",
"note_recorded": true,
"proposed_by": {
"type": "user",
"id": "<string>"
},
"requires_approval": true,
"created_at": "2026-04-15T14:30:00Z",
"approval_rule": "sanctions_pep",
"approval": {
"id": "<string>",
"outcome": "approved",
"by": {
"type": "user",
"id": "<string>"
},
"note_recorded": true,
"created_at": "2026-04-15T14:30:00Z"
}
}
],
"notes": [
{
"id": "irn_01JB9C",
"author": {
"type": "user",
"id": "<string>"
},
"created_at": "2026-04-15T14:30:00Z"
}
],
"events": [
{
"kind": "<string>",
"actor": {
"type": "user",
"id": "<string>"
},
"summary": "<string>",
"created_at": "2026-04-15T14:30:00Z"
}
],
"outcome": "waiting_on_customer",
"evaluation_id": "<string>",
"linked_evaluation_id": "<string>",
"linked_review_id": "<string>",
"open_reason": "unusual_activity",
"owner_id": "<string>",
"due_at": "2026-04-15T14:30:00Z",
"paused_at": "2026-04-15T14:30:00Z",
"closed_at": "2026-04-15T14:30:00Z",
"pending_decision_id": "<string>"
}
}{
"error": {
"code": "module_not_enabled",
"message": "this feature is not enabled for your account"
}
}{
"error": {
"message": "insufficient funds for this payout",
"code": "insufficient_balance"
}
}Authorizations
Per-request DPoP proof JWT (RFC 9449). MUST accompany the Authorization: DPoP <access_token> header on every protected operation. The proof is signed by the merchant's private DPoP key and carries htm, htu, iat, jti, and ath claims.
Path Parameters
Review ID.
Pattern:
^irv_[a-zA-Z0-9]+$Response
The review.
Show child attributes
Show child attributes
Was this page helpful?
⌘I
Retrieve a review
curl --request GET \
--url https://api.antonpayments.com/v1/intelligence/reviews/{id} \
--header 'Authorization: Bearer <token>' \
--header 'DPoP: <api-key>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>', DPoP: '<api-key>'}};
fetch('https://api.antonpayments.com/v1/intelligence/reviews/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.antonpayments.com/v1/intelligence/reviews/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"DPoP: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.antonpayments.com/v1/intelligence/reviews/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("DPoP", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"id": "irv_01JB8QK2",
"number": "RV-0142",
"kind": "possible_sanctions_match",
"priority": "high",
"status": "open",
"source": "evaluation",
"subject": {
"type": "person",
"display": "V*** S***",
"reference": "cust_7731"
},
"opened_by": {
"type": "user",
"id": "<string>"
},
"overdue": true,
"created_at": "2026-04-15T14:30:00Z",
"updated_at": "2026-04-15T14:30:00Z",
"matched_entries": 123,
"opening_note_recorded": true,
"decisions": [
{
"id": "ird_01JB9A",
"decision": "waiting_on_customer",
"reason_code": "dob_needed",
"note_recorded": true,
"proposed_by": {
"type": "user",
"id": "<string>"
},
"requires_approval": true,
"created_at": "2026-04-15T14:30:00Z",
"approval_rule": "sanctions_pep",
"approval": {
"id": "<string>",
"outcome": "approved",
"by": {
"type": "user",
"id": "<string>"
},
"note_recorded": true,
"created_at": "2026-04-15T14:30:00Z"
}
}
],
"notes": [
{
"id": "irn_01JB9C",
"author": {
"type": "user",
"id": "<string>"
},
"created_at": "2026-04-15T14:30:00Z"
}
],
"events": [
{
"kind": "<string>",
"actor": {
"type": "user",
"id": "<string>"
},
"summary": "<string>",
"created_at": "2026-04-15T14:30:00Z"
}
],
"outcome": "waiting_on_customer",
"evaluation_id": "<string>",
"linked_evaluation_id": "<string>",
"linked_review_id": "<string>",
"open_reason": "unusual_activity",
"owner_id": "<string>",
"due_at": "2026-04-15T14:30:00Z",
"paused_at": "2026-04-15T14:30:00Z",
"closed_at": "2026-04-15T14:30:00Z",
"pending_decision_id": "<string>"
}
}{
"error": {
"code": "module_not_enabled",
"message": "this feature is not enabled for your account"
}
}{
"error": {
"message": "insufficient funds for this payout",
"code": "insufficient_balance"
}
}