KYC Solution API Documentation
  1. Checks
KYC Solution API Documentation
  • 📘 Enum Reference
  • Clients
    • Create Client
      POST
    • Get Clients List
      GET
    • Get Client
      GET
  • Documents
    • Add Document
      POST
    • Add Document Attachment
      POST
    • Get Documents List
      GET
    • Get Document
      GET
    • View Document Attachment
      GET
  • Live Photos
    • Add Live Photo
      POST
    • Get Live Photos List
      GET
    • Get Live Photo
      GET
    • View Live Photo
      GET
  • Checks
    • Create Check Request
      POST
    • Get Check Result
      GET
    • Get Checks List
      GET
    • Get Client Latest Check
      GET
  1. Checks

Get Client Latest Check

GET
/service/checks/client/latest-check

Request

Authorization
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
Query Params

Responses

🟢200200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api-sandbox.kycsolution.com/api/service/checks/client/latest-check?client_id=5f87d422-b178-41fd-a8c4-b17003896e2a' \
--header 'X-API-Key: <api-key>'
Response Response Example
{
    "result": {
        "id": "d9740d3c-ef52-4488-8270-5aa4c2ce96e5",
        "outcome": "attention",
        "reason": "Document back is invalid. & Eye color is missing or cannot be read. & The document uploaded is a fake or sample document, not an authentic document. Matching address from database. & Face mismatch between document photo and selfie photo, similarity score: 0.01.",
        "result": {
            "mrz_text": null,
            "person_age": 32,
            "person_gender": "MALE",
            "person_height": "5'-05\"",
            "person_address1": "2570 24TH STREET",
            "person_address2": "ANYTOWN, CA",
            "document_id_type": "DRIVING_LICENSE",
            "person_eye_color": null,
            "person_full_name": "CHARLIE KIRK",
            "person_last_name": "KIRK",
            "person_post_code": null,
            "person_first_name": "CHARLIE",
            "document_id_number": "03062567",
            "person_middle_name": null,
            "document_expiry_date": "2030-08-31",
            "document_issued_date": "2009-08-31",
            "person_date_of_birth": "1993-10-14",
            "document_country_iso2": "US",
            "document_country_iso3": "USA",
            "document_country_name": "UNITED STATES",
            "person_place_of_birth": null,
            "document_issuing_authority": null,
            "person_nationality_country_iso2": "US",
            "person_nationality_country_iso3": "USA",
            "person_nationality_country_name": "UNITED STATES"
        },
        "warnings": [
            {
                "code": "INVALID_BACK_DOCUMENT",
                "decision": "reject",
                "severity": "high",
                "confidence": 1,
                "description": "Document back is invalid."
            },
            {
                "code": "MISSING_EYE_COLOR",
                "decision": "accept",
                "severity": "low",
                "confidence": 1,
                "description": "Eye color is missing or cannot be read."
            },
            {
                "code": "FAKE_ID",
                "decision": "reject",
                "severity": "high",
                "confidence": 1,
                "description": "The document uploaded is a fake or sample document, not an authentic document. Matching address from database."
            },
            {
                "code": "FACE_MISMATCH",
                "decision": "reject",
                "severity": "high",
                "confidence": 1,
                "description": "Face mismatch between document photo and selfie photo, similarity score: 0.01."
            }
        ],
        "ip_address": null,
        "created_at": "2025-11-17T14:08:38.282Z",
        "updated_at": "2025-11-17T14:08:38.282Z",
        "deleted_at": null
    }
}
Modified at 2025-11-27 20:03:00
Previous
Get Checks List
Built with