Skip to main content
GET
/
v1
/
detection
/
{detectionId}
Get fraud detection by ID
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

detectionId
integer
required

Response

Fraud detection record retrieved successfully

result
FraudDetection · object
required

The fraud detection result