cURL
curl --request POST \ --url https://api.insightai.in/fraud-detection \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "transactionId": "<string>", "amount": 123, "timestamp": "2023-11-07T05:31:56Z", "accountDetails": { "accountId": "<string>", "accountType": "<string>" } } '
{ "status": "<string>", "isFraudulent": true, "details": "<string>" }
Analyzes transaction data for potential fraud and returns a detailed fraud report.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Transaction details to analyze for fraud.
Unique identifier for the transaction.
Transaction amount.
Timestamp of the transaction.
Show child attributes
Fraud detection response
Status of the fraud detection process.
Indicates whether the transaction is flagged as fraudulent.
Detailed explanation of the fraud detection result.