curl --request GET \
--url https://api.deepxl.ai/v1/detection/{detectionId} \
--header 'Authorization: Bearer <token>'{
"result": {
"detectionId": 1,
"mediaType": "image",
"fileType": "jpeg",
"fileName": "document.jpg",
"fileSize": 231433,
"model": "object",
"likelihood": 4.75,
"fraudSeverity": "low",
"reasoning": [
"Image appears authentic with only 4.7% AI probability. Natural characteristics suggest genuine photography."
],
"modelResults": {
"technicalChecks": []
},
"classification": "verified",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"tags": [
{
"name": "customerId",
"value": "9999"
},
{
"name": "customerName",
"value": "Acme Corp"
},
{
"name": "documentId",
"value": "DOC-2024-001"
},
{
"name": "companyName",
"value": "DeepXL"
},
{
"name": "companyId",
"value": "COMP-001"
}
],
"files": [
{
"category": "original_file",
"fileName": "document.jpg",
"fileSize": 231433,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/fd_1_document.jpg"
}
]
}
}Get a specific fraud detection record by its ID, including all associated tags and files.
curl --request GET \
--url https://api.deepxl.ai/v1/detection/{detectionId} \
--header 'Authorization: Bearer <token>'{
"result": {
"detectionId": 1,
"mediaType": "image",
"fileType": "jpeg",
"fileName": "document.jpg",
"fileSize": 231433,
"model": "object",
"likelihood": 4.75,
"fraudSeverity": "low",
"reasoning": [
"Image appears authentic with only 4.7% AI probability. Natural characteristics suggest genuine photography."
],
"modelResults": {
"technicalChecks": []
},
"classification": "verified",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"tags": [
{
"name": "customerId",
"value": "9999"
},
{
"name": "customerName",
"value": "Acme Corp"
},
{
"name": "documentId",
"value": "DOC-2024-001"
},
{
"name": "companyName",
"value": "DeepXL"
},
{
"name": "companyId",
"value": "COMP-001"
}
],
"files": [
{
"category": "original_file",
"fileName": "document.jpg",
"fileSize": 231433,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/fd_1_document.jpg"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Fraud detection record retrieved successfully
The fraud detection result
Show child attributes
Was this page helpful?