Skip to main content

SISTEMA DE IDENTIDAD DIGITAL

Description​

The SID (Sistema de Identidad Digital) is Argentina’s official digital identity verification platform operated by RENAPER. It enables public and private entities to validate an individual’s identity online using the official national ID database and biometric records.

How it works​

Step 1 – User Data Capture​

The end user:

  • Enters their DNI number
  • Takes a selfie
  • Uploads a photo of their DNI card (back and front)

Step 2 – API Submission​

MSLA ID sends via API:

  • DNI number
  • Personal data
  • Biometric image
  • Session parameters

HTTP method GET​

Endpoint​

https://api.msla-id.com/experience-background-criminalrecord-api-v1/api/idv-govcheck/v1/cl-identity/{documentNumber}/judicial-case
[SANDBOX Environment]

For testing purposes, use the base domain: apidev.msla-id.com

info

Before proceeding, make sure you have your jwt token, if you don't have it, check the login documentation.

Request header parameter​

NAMEREQUIREDTYPEDESCRIPTION
Authorization✅stringbearer jwt token

URI request parameter​

NAMEREQUIREDTYPEDESCRIPTION
documentNumber✅stringChilean identification data by means of the identity document plus the verification digit.

Status code responses​

CodeDescription
200 OK
400 Bad request
401 Unauthorized
404 Not found
500 Internal server error.

The full documentation error codes can be found here.

Response 200 status code​

{
"traceId": "b2345cfc7bee621e",
"timestamp": "2023-05-15 11:59:35",
"data": {
"caseNumber": "3101-2025",
"isReserved": false,
"reservationMessage": "",
"caseBook": "Policia Local / 3101 - 2025",
"filingDate": "31/01/2025",
"caseTitle": "VALERIO/PIÑEIRO",
"proceduralStatus": "Fallada",
"currentLocation": "Fallado y archivado",
"caseType": "(Policia local) Queja",
"appealTextToken": "",
"caseMovements": [
{
"recordNumber": "12",
"document": "",
"attachment": "",
"year": "2025",
"processingDate": "03/03/2025",
"procedureType": "Sentencia",
"procedureDescription": "RECHAZADO RECURSO DE QUEJA",
"correlativeNumber": "42581-2025",
"chamber": "Segunda, PENAL",
"status": "Bloqueado"
},
{
"recordNumber": "10",
"document": "",
"attachment": "",
"year": "2025",
"processingDate": "26/02/2025",
"procedureType": "Otro Tramite",
"procedureDescription": "CERTIFICADO DE NOTA DE ACUERDO",
"correlativeNumber": "39534-2025",
"chamber": "Segunda, PENAL",
"status": "Bloqueado"
}
],
"parties": [
{
"role": "ABG. RECURRENTE",
"nationalId": "17087287-8",
"personType": "Natural",
"fullName": "VICENTE JOSÉ DEL REAL MARIMÓN"
},
{
"role": "RECURRIDO",
"nationalId": "9473185-2",
"personType": "Natural",
"fullName": "SAMUEL DAVID MUÑOZ WEISZ"
}
]
}
}

Response 400 status code​

{
"traceId": "542fc743fffda052",
"timestamp": "2023-05-05 11:20:46",
"code": "IDV-4005",
"message": "-",
"data": null
}

Response 401 status code​

{
"timestamp": "YYYY-MM-DDTHH:mm:ss.sssZ",
"status": 401,
"error": "Unauthorized",
"path": "/api/idv-govcheck/v1/cl-identity/{documentNumber}/judicial-case"
}

Response 404 status code​

{
"traceId": "ef2407b8c0df635c",
"timestamp": "2023-05-22 17:25:55",
"code": "IDV-1002",
"message": "Data not found."
}

Response 500 status code​

{
"traceId": "43a20f33d4e8730d",
"timestamp": "yyyy-mm-dd HH:MM:SS",
"code": "IDV-1001",
"message": "A generic error has occurred.",
"data": null
}