Skip to main content
GET
/
v1
/
verification
/
{verificationId}
Get Verification
curl --request GET \
  --url https://api.deepxl.ai/v1/verification/{verificationId} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "verificationId": 456,
    "idFileType": "jpeg",
    "idFileName": "drivers_license.jpg",
    "idFileSize": 156789,
    "selfieFileType": "jpeg",
    "selfieFileName": "selfie.jpg",
    "selfieFileSize": 89012,
    "model": "verification",
    "verified": true,
    "modelResults": {
      "technicalChecks": [
        {
          "type": "FACE_MATCH",
          "status": "PASS",
          "confidence": 0.95,
          "details": "Face match confidence: 95%"
        },
        {
          "type": "LIVENESS",
          "status": "PASS",
          "confidence": 0.98,
          "details": "Liveness check passed"
        }
      ]
    },
    "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": "id",
        "fileName": "drivers_license.jpg",
        "fileSize": 156789,
        "contentType": "image/jpeg",
        "timestamp": 1725795600,
        "timestampISO": "2024-09-08T10:00:00.000000",
        "url": "https://api.deepxl.ai/v1/files/v_id_456_drivers_license.jpg"
      },
      {
        "category": "face",
        "fileName": "selfie.jpg",
        "fileSize": 89012,
        "contentType": "image/jpeg",
        "timestamp": 1725795600,
        "timestampISO": "2024-09-08T10:00:00.000000",
        "url": "https://api.deepxl.ai/v1/files/v_face_456_selfie.jpg"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

verificationId
integer
required

Response

Verification record retrieved successfully

result
Verification · object
required

The verification result