Skip to main content

Identity Verification in Argentina (Extra)

Verifik's Identity Verification API helps you authenticate Argentine citizens using official government data. This endpoint returns extended identity fields beyond the standard cΓ©dula response, including date of birth, gender, structured name tokens, and life status (isAlive).

What does this API validate?​

Our API connects directly with official records to validate:

  • Full Name & DNI Number: Supports Documento Nacional de Identidad (DNI), document type DNIAR.
  • Identity Match: Confirms that the document number corresponds to a registered person.
  • Extra Data: Returns date of birth, gender, first name, last name, full name, arrayName (name parts), and isAlive.

By verifying these details, you can be confident that the person you're dealing with is real and holds a valid document, significantly lowering the risk of impersonation and fraud.

API Reference​

Endpoint​

https://api.verifik.co/v2/ar/cedula/extra

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringYesDocument type. Allowed value: DNIAR.
documentNumberstringYesDNI number to query, without spaces.

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/ar/cedula/extra',
params: { documentType: 'DNIAR', documentNumber: '44768756' },
headers: {
Accept: 'application/json',
Authorization: 'Bearer <token>',
},
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"documentType": "DNIAR",
"documentNumber": "44768756",
"firstName": "MARIA LOURDES",
"lastName": "ARCE",
"fullName": "MARIA LOURDES ARCE",
"arrayName": [
"MARIA",
"LOURDES",
"ARCE"
],
"gender": "F",
"dateOfBirth": "2003-03-25",
"isAlive": true
},
"signature": {
"dateTime": "April 15, 2026 5:43 PM",
"message": "Certified by Verifik.co"
},
"id": "B7T6Y"
}

Notes​

  • documentType must be DNIAR.
  • gender is returned as a single-letter code (for example F or M) when available.
  • isAlive indicates whether the registry reports the person as alive at the time of the query.

Common Use Cases​

  • Fintech & Banking: Enrich onboarding with birth date and life status checks.
  • E-commerce & Delivery: Validate couriers or high-value account holders with stronger identity signals.
  • HR & Recruitment: Confirm candidate identity details against official records.
  • Insurance & Healthcare: Support eligibility and age-related rules with verified dates of birth.

Official Sources & Reliability​

We connect directly with official Argentine government sources to ensure you receive verified, up-to-the-minute information. Every query is handled with strict adherence to security and regulatory standards.

Key Benefits​

  • Richer identity signal: Date of birth, gender, and life status alongside name and document number.
  • Automated Compliance: Streamline your KYC checks to prevent fraud without adding friction for your users.
  • Instant Results: Process verifications in seconds, perfect for real-time digital onboarding.
  • Trusted Data: Rely on data sourced directly from official records.
  • Easy Integration: Connect easily via our REST API or use our compatible SDKs.

Compliance & Security​

We prioritize the safety of your data. Verifik uses advanced encryption (HTTPS/TLS 1.3) and strict privacy management standards to ensure confidentiality. Our service is monitored 24/7 for availability and offers role-based access controls to keep your team's access secure.

About Verifik​

Verifik is a leading platform for identity verification, compliance, and fraud prevention across Latin America. Our APIs automate KYC, KYB, AML, and biometric validation processes, connecting businesses with official data sources in Colombia, Mexico, Peru, Chile, Uruguay, Argentina, and beyond.