Skip to main content
GET
/
fraud-detection
/
{id}
cURL
curl --request GET \
  --url https://api.insightai.in/fraud-detection/{id} \
  --header 'Authorization: Bearer <token>'
{
  "transactionId": "<string>",
  "isFraudulent": true,
  "riskScore": 123,
  "explanation": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Transaction ID for which the fraud detection report is requested.

Response

Fraud detection report

transactionId
string

ID of the transaction.

isFraudulent
boolean

Indicates if the transaction is fraudulent.

riskScore
number

Risk score associated with the transaction.

explanation
string

Detailed explanation of the fraud analysis.

I