Identity API documentation

Table Of Contents
  1. Identity API documentation

What is the Identity API?

You can find a comprehensive overview on the Identity API product page.

List of supported identity documents

Passports

The following countries are supported:

  • All countries

Identity cards

The following countries are supported:

  • Romania
  • France

Residence permits / residence permits

The following countries are supported:

  • France

Passport card / Border crossing card

The following countries are supported:

  • USA

Biometric ID cards

The following countries are supported:

  • Norway (NOR)
  • France (FRA)
  • Germany (DEU)
  • Spain (ESP)
  • Luxembourg (LUX)
  • Holland (NLD)
  • Austria (AUT)
  • Poland (POL)
  • Belgium (BEL)
  • Portugal (PRT)
  • Lithuania (LTU)
  • Bulgaria (BGR)
  • Romania (ROU)
  • Estonia (EST)
  • Latvia (LVA)
  • Cyprus (CYP)
  • Malta (MLT)
  • Czechia (CZE)
  • Slovakia (SVK)
  • Finland (FIN)
  • Sweden (SWE)
  • Greece (RCMP)
  • Switzerland (CHE)
  • Croatia (HRV)
  • Hungary (HUN)

Biometric driver’s licenses

The following countries are supported:

  • Croatia (HRV)
  • France (FRA)
  • Algeria (DZA)
  • Estonia (EST)

How do I send the documents?

Accepted formats

The accepted formats are:

  • PDF
  • Images (PNG/JPG/Webp etc)

Number of files per call

The API only accepts one file per call with the “file” parameter: it is therefore not possible to add the front to one file and back to a second file.

How to avoid document recognition problems?

We have produced specific documentation detailing the various points of vigilance to avoid document recognition problems.

Identity API requests

Parameters

The API system allows you to automate the validation of identity documents via a simple HTTP POST request.

The accepted parameters are listed in the table below:

ParameterTypeObligatoryDescription
fileFileYesIdentification in PDF or image format (one page only)
api_keyThongYesYour API key
formatThongNoFormat of the response (json or xml), default json

Examples on different languages

curl
-X POST \
-F "format={{ json or xml }}" \
-F "api_key={{ YOUR_API_KEY }}" \
-F "file=@\"{{ PATH_TO_FILE }}"" \

https://api.app.trustdochub.com/api/identity/v1
public String sendIdFileAndGetResults(MultipartFile file) {

WebClient client = WebClient.create();

MultipartBodyBuilder builder = new MultipartBodyBuilder();
builder.part("file", file.getResource());
builder.part("api_key", {{ YOUR_API_KEY }});

return client.post()
.uri(URI.create("https://api.app.trustdochub.com/api/identity/v1"))
.contentType(MediaType.MULTIPART_FORM_DATA)
.body(BodyInserters.fromMultipartData(builder.build()))
.retrieve()
.bodyToMono(String.class)
.block();
}
import requests

url = 'https://api.app.trustdochub.com/api/identity/v1'
data = {'api_key': '{{ YOUR_API_KEY }}'}

with open('file.txt', 'rb') as file:
    response = requests.post(url, data=data, files={'file': file})

print(response.text)
const axios = require('axios');
const FormData = require('form-data');
const fs = require('fs');

const form = new FormData();

// Chemin vers le fichier que vous souhaitez envoyer
const filePath = 'pathToFile';

// Vérifier si le fichier existe
if (!fs.existsSync(filePath)) {
  console.error('Le fichier spécifié est introuvable :', filePath);
  process.exit(1);
}

// Ajouter le fichier au formulaire
form.append('file', fs.createReadStream(filePath));

// Ajouter le paramètre api_key
form.append('api_key', 'votre_clé_api'); // Remplacez par votre clé API réelle

(async () => {
  try {
    const response = await axios.post(
      'https://api.app.trustdochub.com/api/identity/v1',
      form,
      {
        headers: {
          ...form.getHeaders(),
          // Si l'API nécessite une autorisation supplémentaire, ajoutez-la ici
          // 'Authorization': 'Bearer votre_token',
        },
      }
    );

    console.log('Réponse du serveur :', response.data);
  } catch (error) {
    if (error.response) {
      // La requête a été faite et le serveur a répondu avec un statut d'erreur
      console.error('Erreur du serveur :', error.response.status);
      console.error('Détails de l\'erreur :', error.response.data);
    } else if (error.request) {
      // La requête a été faite mais aucune réponse n'a été reçue
      console.error('Aucune réponse reçue :', error.request);
    } else {
      // Erreur lors de la configuration de la requête
      console.error('Erreur lors de la configuration de la requête :', error.message);
    }
  }
})();
<?php require 'vendor/autoload.php'; 
use GuzzleHttp\Client; 
use GuzzleHttp\Exception\RequestException;

// URL cible 
$url = 'https://api.app.trustdochub.com/api/identity/v1'; 

// Chemin vers le fichier à envoyer 
$filePath = '{{ path_to_file }}'; 

// Vérifier si le fichier existe 
if (!file_exists($filePath)) {     die('Fichier introuvable : ' . $filePath); } 

// Clé API 
$apiKey = 'votre_clé_api'; // Remplacez par votre clé API 

// Créer un client Guzzle 
$client = new Client(); try {     $response = $client->post($url, [
        'multipart' => [
            [
                'name'     => 'file',
                'contents' => fopen($filePath, 'r'),
                'filename' => 'specimen_passeport.webp',
                'headers'  => ['Content-Type' => 'image/webp']
            ],
            [
                'name'     => 'api_key',
                'contents' => $apiKey
            ]
        ],
        'verify' => true // Vérifier le certificat SSL
    ]);

    // Afficher le code de statut HTTP
    echo 'Code HTTP : ' . $response->getStatusCode() . "\n";
    
    // Afficher la réponse du serveur
    echo 'Réponse du serveur : ' . $response->getBody();
} catch (RequestException $e) {
    if ($e->hasResponse()) {
        echo 'Erreur du serveur : ' . $e->getResponse()->getStatusCode() . "\n";
        echo 'Réponse du serveur : ' . $e->getResponse()->getBody();
    } else {
        echo 'Erreur lors de la requête : ' . $e->getMessage();
    }
}

Web interface

In addition to the API, you have access to a web interface that allows you to:

  • View your subscription details
  • Know how many checks you have left on each subscription
  • Access your API call history
  • Download JSON and XML reports for each history call

Languages available

The web interface is available in the following languages:

  • French
  • English

Subscriptions tab

You can find a list of your subscriptions on the home page of the web interface, with the following information:

  • Type de plan (PRO, BUSINESS, CORPORATE)
  • Frequency (monthly or annual)
  • Active subscription: Is your subscription active or not
  • API key: the API key for your subscription
  • Remaining Verifications: The number of verifications remaining on your subscription, over the period
Identity Web Suite trustdochub.com Subscriptions tab

Identity tab

The Identity tab (accessible if an Identity subscription is active) gives you access to various information and tools.

Historical

The API call history allows you to know the complete history of the calls made, with the following information:

  • Date of analysis
  • Type of document checked
  • Download the report in PDF / JSON / XML formats
  • Call deletion + corresponding data
Localized Identity API Web Interface trustdochub.com

“Verify a document” tool

The “Verify a document” tool allows you to send the documents to be checked directly from the web interface, without having to go through API calls!

The two approaches are complementary, depending on the needs.

The results will then be available in the history, which can be downloaded as a PDF, JSON or XML report.

Verify a Document API Identity trustdochub.com tool

“MRZ characters” tool

The “MRZ characters” tool allows you to check the validity of an identity document by entering the characters from the MRZ tape (or copy/paste).

The results are then available for download in the history, in PDF / JSON / XML formats.

The advantage is that it is not necessary to send the “real” document, and can therefore be an advantage in certain situations.

Web Interface API Identity MRZ Characters

“Social Security Number” tool

The Social Security Number tool allows you to extract the information contained in the Social Security numbers and check the validity of the security key.

The data is not saved and is therefore not available for download as a report.

API Identity Tool Verification Social Security Number trustdochub.com

API Responses

Format JSON

You can get the results in JSON format.

To do this, simply add the “format=json” parameter in your request, or not add the “format” parameter.

Here are the possible answers depending on the documents:

Passports

Passports

{
"documentInfo": {
"numberOfCharacters": "88",
"documentType": "PASSPORT",
"country": "NLD",
"lastName": "DE BRUIJN",
"firstNames": [
"WILLEKE",
"LISELOTTE"
],
"dateOfBirth": "1965-03-10",
"gender": "Female",
"documentNumber": "SPECI2014",
"nationality" means "NLD",
"personalNumber": "999999990<<<<<",
"expirationDate": "2024-03-09"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"personalNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true,
"line2ControlKey": true
}
}
French identity card

French identity card

{
"documentInfo": {
"numberOfCharacters": "72",
"documentType": "FR_ID_CARD",
"country": "FRA",
"lastName": "BERTHIER",
"firstNames": [
"CORINNE"
],
"dateOfBirth": "1965-12-06",
"gender": "Female",
"department": "<<",
"documentCreationDate": "1988-06-01",
"expirationDate": "2003-06-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"departmentValid": false,
"departmentFormatFirstLineValid": false,
"documentCreationDateValid": true
},
"controlKeys": {
"departmentConsistency": false,
"line2ControlKey": true,
"globalControlKey": true,
"dateOfBirthControlKey": true
}
}
French biometric identity card

French biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "FR_BIOMETRIC_ID_CARD",
"country": "FRA",
"lastName": "MARTIN",
"firstNames": [
"MAELYS",
"GAELLE",
"MARIED"
],
"dateOfBirth": "1990-07-13",
"gender": "Female",
"documentNumber": "X4RTBPFW4",
"nationality" means "FRA",
"expirationDate": "2030-02-11"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
French biometric driver’s license

French biometric driver’s license

{
"documentInfo": {
"numberOfCharacters": "30",
"documentType": "FR_DRIVING_LICENCE",
"country": "FRA",
"lastName": "MARTIN",
"documentNumber": "13AA00002",
"expirationDate": "2018-12-31"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"countryValid": true,
"documentNumberValid": true,
"expirationDateValid": true
},
"controlKeys": {
"documentNumberControlKey": true,
"globalControlKey": true
}
}
Estonian Biometric Driver’s License

Estonian Biometric Driver’s License

{
"documentInfo": {
"numberOfCharacters": "30",
"documentType": "EE_DRIVING_LICENCE",
"country": "EST",
"documentNumber": "ET999901",
"personalNumber": "49307039909"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"documentNumberValid": true,
"personalNumberValid": true
},
"controlKeys": {
"globalControlKey": true
}
}
Croatian Biometric Driver’s License

Croatian Biometric Driver’s License

{
"documentInfo": {
"numberOfCharacters": "30",
"documentType": "HR_DRIVING_LICENCE",
"documentNumber": "10000487",
"personalNumber": "90088298703",
"expirationDate": "2030-07-23"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"documentNumberValid": true,
"personalNumberValid": true,
"expirationDateValid": true
},
"controlKeys": {
"globalControlKey": true
}
}
Algerian Biometric driving license

Algerian Biometric driving license

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "DZ_DRIVING_LICENCE",
"country": "DZA",
"lastName": "SPECIMEN",
"firstNames": [
"SPECIMEN"
],
"dateOfBirth": "1973-02-12",
"gender": "Male",
"documentNumber": "A00000201",
"nationality" means "DZA",
"expirationDate": "2028-03-30"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
French residence permit

French residence permit

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "FR_RESIDENCE_PERMIT",
"country": "FRA",
"lastName": "TRAORE",
"firstNames": [
"SALIMAH"
],
"dateOfBirth": "1988-01-01",
"gender": "Female",
"documentNumber": "3MBMONSFJ",
"personalNumber": "5903000242",
"nationality" means "SEN",
"expirationDate": "2030-09-17"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"documentNumberValid": true,
"personalNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": false
}
}
German biometric ID card

German biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "DE_BIOMETRIC_ID_CARD",
"country": "D",
"lastName": "MUSTERMANN",
"firstNames": [
"ERIKA"
],
"dateOfBirth": "1983-08-12",
"documentNumber": "L01XM00CH",
"documentCreationDate": "2021-08-01",
"nationality": "D",
"expirationDate": "2031-08-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"countryValid": true,
"documentNumberValid": true,
"documentCreationDateValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": false
}
}
US passport card

US passport card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "US_PASSPORT_CARD",
"country": "USA",
"lastName": "BARNES I",
"firstNames": [
"ARLO",
"JAMES"
],
"dateOfBirth": "1994-09-27",
"gender": "Male",
"documentNumber": "C13549388",
"nationality": "USA",
"expirationDate": "2026-11-21",
"stateDepDocControlNumber": "792818960"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": false
}
}
US border crossing card

US border crossing card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "US_BORDER_CROSSING_CARD",
"country": "USA",
"lastName": "VIAJERA DE LA FRONTERA",
"firstNames": [
"F"
],
"dateOfBirth": "1981-05-05",
"gender": "Female",
"documentNumber": "786000118",
"visaNumber": "MEX004214033",
"nationality" means "MEX",
"expirationDate": "2018-08-06"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": false,
"dateOfBirthControlKey": true,
"globalControlKey": false
}
}
Spanish biometric ID card

Spanish biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "ES_BIOMETRIC_ID_CARD",
"country": "ESP",
"lastName": "ESPANOLA ESPANOLA",
"firstNames": [
"CARMEN"
],
"dateOfBirth": "1980-01-01",
"gender": "Female",
"documentNumber": "CAA000000",
"dniNumber": "99999999R",
"nationality": "ESP",
"expirationDate": "2031-06-02"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Luxembourg biometric identity card

Luxembourg biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "LU_BIOMETRIC_ID_CARD",
"country": "LUX",
"lastName": "SPECIMEN",
"firstNames": [
"JEANNE"
],
"dateOfBirth": "1983-08-19",
"gender": "Female",
"documentNumber": "SPEC07347",
"nationality": "LUX",
"expirationDate": "2031-07-15"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Dutch biometric ID card

Dutch biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "NL_BIOMETRIC_ID_CARD",
"country": "NLD",
"lastName": "DE BRUIJN",
"firstNames": [
"WILLEKE",
"LISELOTTE"
],
"dateOfBirth": "1965-03-10",
"gender": "Female",
"documentNumber": "SPECI2021",
"nationality" means "NLD",
"expirationDate": "2031-08-02"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Austrian biometric ID card

Austrian biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "AT_BIOMETRIC_ID_CARD",
"country": "AUT",
"lastName": "MUSTERFRAU",
"firstNames": [
"MARIA"
],
"dateOfBirth": "1981-12-31",
"gender": "Female",
"documentNumber": "PA1234567",
"nationality" means "AUT",
"expirationDate": "2031-08-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Polish biometric ID card

Polish biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "PL_BIOMETRIC_ID_CARD",
"country": "POL",
"lastName": "KOWALSKI",
"firstNames": [
"JAN"
],
"dateOfBirth": "1981-01-02",
"gender": "Male",
"documentNumber": "ZZC708926",
"personalNumber": "81010200131",
"nationality" means "POL",
"expirationDate": "2031-10-05"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Belgian biometric identity card

Belgian biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "BE_BIOMETRIC_ID_CARD",
"country": "BEL",
"lastName": "SPECIMEN",
"firstNames": [
"SPECIMEN"
],
"dateOfBirth": "1995-02-28",
"gender": "Female",
"documentNumber": "000-001094-278",
"personalNumber": "95022899874",
"nationality" means "UTO",
"expirationDate": "2030-01-06"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": false,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Portuguese Biometric Identity Card

Portuguese Biometric Identity Card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "PT_BIOMETRIC_ID_CARD",
"country": "PRT",
"lastName": "CARLOS MONTEIRO",
"firstNames": [
"AMELIA",
"VANESS"
],
"dateOfBirth": "1980-10-10",
"gender": "Female",
"documentNumber": "00002475-9ZZ7",
"nationality" means "PRT",
"expirationDate": "2020-06-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Lithuanian Biometric Identity Card

Lithuanian Biometric Identity Card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "LT_BIOMETRIC_ID_CARD",
"country": "LTU",
"lastName": "BRUZAITE",
"firstNames": [
"VIGILIJA"
],
"dateOfBirth": "1978-03-11",
"gender": "Female",
"documentNumber": "00000000",
"personalNumber": "47803111025",
"nationality" means "LTU",
"expirationDate": "2022-07-04"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Bulgarian biometric identity card

Bulgarian biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "BG_BIOMETRIC_ID_CARD",
"country": "BGR",
"lastName": "IVANOVA",
"firstNames": [
"MARITSA",
"RADNEVA"
],
"dateOfBirth": "1985-08-01",
"gender": "Female",
"documentNumber": "600000000",
"personalNumber": "8508010133",
"nationality": "BGR",
"expirationDate": "2019-08-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Romanian ID card

Romanian ID card

{
"documentInfo": {
"numberOfCharacters": "72",
"documentType": "RO_ID_CARD",
"country": "ROU",
"lastName": "POPESCU",
"firstNames": ["MARIN"],
"dateOfBirth": "1946-09-13",
"gender": "Male",
"documentNumber": "SS099993",
"nationality" means "ROU",
"personalNumber": "1400088",
"expiryDate": "1981-09-13"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"countryValid": true,
"lastNameValid": true,
"nationalityValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"expirationDateValid": true
},
"controlKeys": { "expirationDateControlKey": false,
"dateOfBirthControlKey": false,
"globalControlKey": false,
"line2ControlKey": false }
}
Romanian Biometric Identity Card

Romanian Biometric Identity Card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "RO_BIOMETRIC_ID_CARD",
"country": "ROU",
"lastName": "MANOLE",
"firstNames": [
"CORINA",
"IOANA"
],
"dateOfBirth": "1983-07-03",
"gender": "Female",
"documentNumber": "SP1234691",
"personalNumber": "2830703460094",
"nationality" means "ROU",
"expirationDate": "2031-09-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Estonian biometric ID card

Estonian biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "EE_BIOMETRIC_ID_CARD",
"country": "EST",
"lastName": "JOEORG",
"firstNames": [
"JAAK",
"KRISTJAN"
],
"dateOfBirth": "1980-01-08",
"gender": "Male",
"documentNumber": "AS0002262",
"personalNumber": "38001085718",
"nationality" means "EST",
"expirationDate": "2026-06-28"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Latvian biometric identity card

Latvian biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "LV_BIOMETRIC_ID_CARD",
"country": "LVA",
"lastName": "PARAUDZINA",
"firstNames": [
"MARA"
],
"dateOfBirth": "1982-12-12",
"gender": "Female",
"documentNumber": "PA9925010",
"personalNumber": "321251-72698",
"nationality" means "LVA",
"expirationDate": "2031-07-21"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Cypriot biometric identity card

Cypriot biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "CY_BIOMETRIC_ID_CARD",
"country": "CYP",
"lastName": "ANONYMOUS",
"firstNames": [
"AFRODITI"
],
"dateOfBirth": "1989-01-15",
"gender": "Female",
"documentNumber": "CR0000000",
"nationality" means "CYP",
"expirationDate": "2024-09-23"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Maltese biometric identity card

Maltese biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "MT_BIOMETRIC_ID_CARD",
"country": "MLT",
"lastName": "CAMILLERI",
"firstNames": [
"MARIA"
],
"dateOfBirth": "1984-08-22",
"gender": "Female",
"documentNumber": "13751801",
"personalNumber": "0000000M",
"nationality" means "MLT",
"expirationDate": "2030-09-09"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Czech biometric ID card

Czech biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "CZ_BIOMETRIC_ID_CARD",
"country": "CZE",
"lastName": "SPECIMEN",
"firstNames": [
"VZOR"
],
"dateOfBirth": "1993-01-12",
"gender": "Male",
"documentNumber": "998010524",
"nationality" means "CZE",
"expirationDate": "2033-05-12"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Slovak biometric identity card

Slovak biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "SK_BIOMETRIC_ID_CARD",
"country": "SVK",
"lastName": "SPECIMEN",
"firstNames": [
"VZORKA"
],
"dateOfBirth": "2011-11-11",
"gender": "Female",
"documentNumber": "XX023058",
"personalNumber": "1111111111",
"nationality": "SVK",
"expirationDate": "2032-10-11"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Finnish biometric ID card

Finnish biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "FI_BIOMETRIC_ID_CARD",
"country": "FIN",
"lastName": "MATKAILIJA",
"firstNames": [
"MATTI"
],
"dateOfBirth": "1950-01-01",
"gender": "Male",
"documentNumber": "545272270",
"personalNumber": "-----------",
"nationality" means "FIN",
"expirationDate": "2026-08-02"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Swedish biometric ID card

Swedish biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "SE_BIOMETRIC_ID_CARD",
"country": "SWE",
"lastName": "SPECIMEN",
"firstNames": [
"SVEA"
],
"dateOfBirth": "1982-08-21",
"gender": "Female",
"documentNumber": "XA0000002",
"personalNumber": "8208212384",
"nationality": "SWE",
"expirationDate": "2027-01-01"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Greek biometric identity card

Greek biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "GR_BIOMETRIC_ID_CARD",
"country": "GRC",
"lastName": "ELLINAS",
"firstNames": [
"GEORGIOS"
],
"dateOfBirth": "1975-05-15",
"gender": "Male",
"documentNumber": "Z00014375",
"nationality" means "RCMP",
"expirationDate": "2033-09-19"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Swiss biometric identity card

Swiss biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "CH_BIOMETRIC_ID_CARD",
"country": "CHE",
"lastName": "SCHWEIZER SAMPLE",
"firstNames": [
"HELVETIA"
],
"dateOfBirth": "1995-08-01",
"gender": "Female",
"documentNumber": "S1A00A00",
"nationality" means "CHE",
"expirationDate": "2033-03-31"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Croatian biometric identity card

Croatian biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "HR_BIOMETRIC_ID_CARD",
"country": "HRV",
"lastName": "SPECIMEN",
"firstNames": [
"SPECIMEN"
],
"dateOfBirth": "1979-11-25",
"gender": "Female",
"documentNumber": "115501830",
"personalNumber": "05781305459",
"nationality" means "HRV",
"expirationDate": "2026-08-02"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Hungarian biometric identity card

Hungarian biometric identity card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "HU_BIOMETRIC_ID_CARD",
"country": "HUN",
"lastName": "SZEPENE KISS",
"firstNames": [
"ROZALIA"
],
"dateOfBirth": "1979-06-30",
"gender": "Female",
"documentNumber": "000188KE",
"nationality" means "HUN",
"expirationDate": "2028-06-30"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": true,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}
Norwegian biometric ID card

Norwegian biometric ID card

{
"documentInfo": {
"numberOfCharacters": "90",
"documentType": "NO_BIOMETRIC_ID_CARD",
"country": "NOR",
"lastName": "OESTENBYEN",
"firstNames": [
"AASAMUND",
"SPECIMEN"
],
"dateOfBirth": "1956-04-23",
"gender": "Male",
"documentNumber": "JGD000824",
"personalNumber": "230456-12345",
"nationality" means "XXX",
"expirationDate": "2026-06-11"
},
"documentInfosValidation": {
"numberOfCharactersValid": true,
"documentTypeValid": true,
"lastNameValid": true,
"dateOfBirthValid": true,
"genderValid": true,
"countryValid": true,
"documentNumberValid": true,
"nationalityValid": false,
"expirationDateValid": true
},
"controlKeys": {
"expirationDateControlKey": true,
"documentNumberControlKey": true,
"dateOfBirthControlKey": true,
"globalControlKey": true
}
}

Format XML

The second type of format available for responses is XML.

To do this, simply add the “format” parameter “xml” to your query.

Here are the possible answers depending on the documents:

Passports

Passports

<Passport>
<documentInfo>
<numberOfCharacters>88</numberOfCharacters>
<documentType>PASSPORT</documentType>
<country>NLD/<country>
<lastName>DE BRUIJN</lastName>
<firstNames>
<firstNames>WILLEKE/<firstNames>
<firstNames>LISELOTTE/<firstNames>
</firstNames>
<dateOfBirth>1965-03-10</dateOfBirth>
<gender>Female</gender>
<documentNumber>SPECI2014</documentNumber>
<nationality>NLD/<nationality>
<personalNumber>999999990<<<<<</personalNumber>
<expiryDate>2024-03-09</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<personalNumberControlKey>true</personalNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
<line2ControlKey>true</line2ControlKey>
</controlKeys>
</Passport>
French identity card

French identity card

<FrenchIdCard>
<documentInfo>
<numberOfCharacters>72</numberOfCharacters>
<documentType>FR_ID_CARD</documentType>
<country>FRA</country>
<lastName>BERTHIER</lastName>
<firstNames>
<firstNames>CORINNE/<firstNames>
</firstNames>
<dateOfBirth>1965-12-06</dateOfBirth>
<gender>Female</gender>
<department><<</department>
<documentCreationDate>1988-06-01</documentCreationDate>
<expiryDate>2003-06-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<departmentValid>false</departmentValid>
<departmentFormatFirstLineValid>false</departmentFormatFirstLineValid>
<documentCreationDateValid>true</documentCreationDateValid>
</documentInfosValidation>
<controlKeys>
<departmentConsistency>false</departmentConsistency>
<line2ControlKey>true</line2ControlKey>
<globalControlKey>true</globalControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
</controlKeys>
</FrenchIdCard>
French biometric identity card

French biometric identity card

<FrenchBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>FR_BIOMETRIC_ID_CARD</documentType>
<country>FRA</country>
<lastName>MARTIN</lastName>
<firstNames>
<firstNames>MAELYS/<firstNames>
<firstNames>GAELLE/<firstNames>
<firstNames>MARIE/<firstNames>
</firstNames>
<dateOfBirth>1990-07-13</dateOfBirth>
<gender>Female</gender>
<documentNumber>X4RTBPFW4</documentNumber>
<nationality>EN/<nationality>
<expiryDate>2030-02-11</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</FrenchBiometricIdCard>
French biometric driver’s license

French biometric driver’s license

<FrenchBiometricDrivingLicense>
<documentInfo>
<numberOfCharacters>30</numberOfCharacters>
<documentType>FR_DRIVING_LICENCE</documentType>
<country>FRA</country>
<lastName>MARTIN</lastName>
<documentNumber>13AA00002</documentNumber>
<expiryDate>2018-12-31</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<documentNumberControlKey>true</documentNumberControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</FrenchBiometricDrivingLicence>
Estonian Biometric Driver’s License

Estonian Biometric Driver’s License

<EstonianBiometricDrivingLicense>
<documentInfo>
<numberOfCharacters>30</numberOfCharacters>
<documentType>EE_DRIVING_LICENCE</documentType>
<country>EST</country>
<documentNumber>ET999901</documentNumber>
<personalNumber>49307039909</personalNumber>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<personalNumberValid>true</personalNumberValid>
</documentInfosValidation>
<controlKeys>
<globalControlKey>true</globalControlKey>
</controlKeys>
</EstonianBiometricDrivingLicence>
Croatian Biometric Driver’s License

Croatian Biometric Driver’s License

<CroatianBiometricDrivingLicense>
<documentInfo>
<numberOfCharacters>30</numberOfCharacters>
<documentType>HR_DRIVING_LICENCE</documentType>
<documentNumber>10000487</documentNumber>
<personalNumber>90088298703</personalNumber>
<expiryDate>2030-07-23</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<documentNumberValid>true</documentNumberValid>
<personalNumberValid>true</personalNumberValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<globalControlKey>true</globalControlKey>
</controlKeys>
</CroatianBiometricDrivingLicence>
Algerian Biometric driving license

Algerian Biometric driving license

<AlgerianBiometricDrivingLicense>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>DZ_DRIVING_LICENCE</documentType>
<country>DZA</country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>SPECIMEN</firstNames>
</firstNames>
<dateOfBirth>1973-02-12</dateOfBirth>
<gender>Male</gender>
<documentNumber>A00000201</documentNumber>
<nationality>DZA/<nationality>
<expiryDate>2028-03-30</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</AlgerianBiometricDrivingLicence>
French residence permit

French residence permit

<FrenchResidencePermit>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>FR_RESIDENCE_PERMIT</documentType>
<country>FRA</country>
<lastName>TRAORE</lastName>
<firstNames>
<firstNames>SALIMAH/<firstNames>
</firstNames>
<dateOfBirth>1988-01-01</dateOfBirth>
<gender>Female</gender>
<documentNumber>3MBMONSFJ/<documentNumber>
<personalNumber>5903000242</personalNumber>
<nationality>SEN</nationality>
<expiryDate>2030-09-17</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<documentNumberValid>true</documentNumberValid>
<personalNumberValid>true</personalNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>false</globalControlKey>
</controlKeys>
</FrenchResidencePermit>
German biometric ID card

German biometric ID card

<GermanBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>DE_BIOMETRIC_ID_CARD</documentType>
<country>D</country>
<lastName>MUSTERMANN</lastName>
<firstNames>
<firstNames>ERIKA</firstNames>
</firstNames>
<dateOfBirth>1983-08-12</dateOfBirth>
<documentNumber>L01XM00CH</documentNumber>
<documentCreationDate>2021-08-01</documentCreationDate>
<nationality>D</nationality>
<expiryDate>2031-08-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<documentCreationDateValid>true</documentCreationDateValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>false</globalControlKey>
</controlKeys>
</GermanBiometricIdCard>
US passport card

US passport card

<UsPassportCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>US_PASSPORT_CARD</documentType>
<country>USA/<country>
<lastName>BARNES I</lastName>
<firstNames>
<firstNames>ARLO/<firstNames>
<firstNames>JAMES/<firstNames>
</firstNames>
<dateOfBirth>1994-09-27</dateOfBirth>
<gender>Male</gender>
<documentNumber>C13549388</documentNumber>
<nationality>USA/<nationality>
<expiryDate>2026-11-21</expiryDate>
<stateDepDocControlNumber>792818960</stateDepDocControlNumber>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>false</globalControlKey>
</controlKeys>
</UsPassportCard>
US border crossing card

US border crossing card

<UsBorderCrossingCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>US_BORDER_CROSSING_CARD</documentType>
<country>USA/<country>
<lastName>VIAJERA DE LA FRONTERA/<LASTName>
<firstNames>
<firstNames>F</firstNames>
</firstNames>
<dateOfBirth>1981-05-05</dateOfBirth>
<gender>Female</gender>
<documentNumber>786000118</documentNumber>
<visaNumber>MEX004214033</visaNumber>
<nationality>MEX</nationality>
<expiryDate>2018-08-06</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>false</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>false</globalControlKey>
</controlKeys>
</UsBorderCrossingCard>
Spanish biometric ID card

Spanish biometric ID card

<SpanishBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>ES_BIOMETRIC_ID_CARD</documentType>
<country>ESP/<country>
<lastName>ESPANOLA ESPANOLA/<lastName>
<firstNames>
<firstNames>CARMEN</firstNames>
</firstNames>
<dateOfBirth>1980-01-01</dateOfBirth>
<gender>Female</gender>
<documentNumber>CAA000000</documentNumber>
<dniNumber>99999999R</dniNumber>
<nationality>ESP/<nationality>
<expiryDate>2031-06-02</expirationDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</SpanishBiometricIdCard>
Luxembourg biometric identity card

Luxembourg biometric identity card

<LuxembourgBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>LU_BIOMETRIC_ID_CARD</documentType>
<country>LUX</country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>JEANNE/<firstNames>
</firstNames>
<dateOfBirth>1983-08-19</dateOfBirth>
<gender>Female</gender>
<documentNumber>SPEC07347</documentNumber>
<nationality>LUX</nationality>
<expiryDate>2031-07-15</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</LuxembourgBiometricIdCard>
Dutch biometric ID card

Dutch biometric ID card

<DutchBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>NL_BIOMETRIC_ID_CARD</documentType>
<country>NLD/<country>
<lastName>DE BRUIJN</lastName>
<firstNames>
<firstNames>WILLEKE/<firstNames>
<firstNames>LISELOTTE/<firstNames>
</firstNames>
<dateOfBirth>1965-03-10</dateOfBirth>
<gender>Female</gender>
<documentNumber>SPECI2021</documentNumber>
<nationality>NLD/<nationality>
<expiryDate>2031-08-02</expirationDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</DutchBiometricIdCard>
Austrian biometric ID card

Austrian biometric ID card

<AustrianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>AT_BIOMETRIC_ID_CARD</documentType>
<country>AUT</country>
<lastName>MUSTERFRAU</lastName>
<firstNames>
<firstNames>MARIA</firstNames>
</firstNames>
<dateOfBirth>1981-12-31</dateOfBirth>
<gender>Female</gender>
<documentNumber>PA1234567</documentNumber>
<nationality>AUT</nationality>
<expiryDate>2031-08-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</AustrianBiometricIdCard>
Polish biometric ID card

Polish biometric ID card

<PolishBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>PL_BIOMETRIC_ID_CARD</documentType>
<country>POL/<country>
<lastName>KOWALSKI/<lastName>
<firstNames>
<firstNames>JAN</firstNames>
</firstNames>
<dateOfBirth>1981-01-02</dateOfBirth>
<gender>Male</gender>
<documentNumber>ZZC708926</documentNumber>
<personalNumber>81010200131</personalNumber>
<nationality>POL/<nationality>
<expiryDate>2031-10-05</expirationDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</PolishBiometricIdCard>
Belgian biometric identity card

Belgian biometric identity card

<BelgianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>BE_BIOMETRIC_ID_CARD</documentType>
<country>BEL/<country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>SPECIMEN</firstNames>
</firstNames>
<dateOfBirth>1995-02-28</dateOfBirth>
<gender>Female</gender>
<documentNumber>000-001094-278</documentNumber>
<personalNumber>95022899874</personalNumber>
<nationality>UTO</nationality>
<expiryDate>2030-01-06</expirationDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>false</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</BelgianBiometricIdCard>
Portuguese Biometric Identity Card

Portuguese Biometric Identity Card

<PortugueseBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>PT_BIOMETRIC_ID_CARD</documentType>
<country>PRT</country>
<lastName>CARLOS MONTEIRO/<lastName>
<firstNames>
<firstNames>AMELIA</firstNames>
<firstNames>VANESS/<firstNames>
</firstNames>
<dateOfBirth>1980-10-10</dateOfBirth>
<gender>Female</gender>
<documentNumber>00002475-9ZZ7</documentNumber>
<nationality>PRT</nationality>
<expiryDate>2020-06-01</expirationDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</PortugueseBiometricIdCard>
Lithuanian Biometric Identity Card

Lithuanian Biometric Identity Card

<LithuanianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>LT_BIOMETRIC_ID_CARD</documentType>
<country>LTU</country>
<lastName>BRUZAITE</lastName>
<firstNames>
<firstNames>VIGILIJA/<firstNames>
</firstNames>
<dateOfBirth>1978-03-11</dateOfBirth>
<gender>Female</gender>
<documentNumber>00000000/<documentNumber>
<personalNumber>47803111025</personalNumber>
<nationality>LTU</nationality>
<expiryDate>2022-07-04</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</LithuanianBiometricIdCard>
Bulgarian biometric identity card

Bulgarian biometric identity card

<BulgarianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>BG_BIOMETRIC_ID_CARD</documentType>
<country>BGR</country>
<lastName>IVANOVA/<lastName>
<firstNames>
<firstNames>MARITSA</firstNames>
<firstNames>RADNEVA</firstNames>
</firstNames>
<dateOfBirth>1985-08-01</dateOfBirth>
<gender>Female</gender>
<documentNumber>600000000/<documentNumber>
<personalNumber>8508010133</personalNumber>
<nationality>BGR</nationality>
<expiryDate>2019-08-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</BulgarianBiometricIdCard>
Romanian ID card

Romanian ID card

<RomanianIdCard>
<documentInfo>
<numberOfCharacters>72</numberOfCharacters>
<documentType>RO_ID_CARD</documentType>
<country>ROU</country>
<lastName>POPESCU/<lastName>
<firstNames>
<firstNames>MARIN/<firstNames>
</firstNames>
<dateOfBirth>1946-09-13</dateOfBirth>
<gender>Male</gender>
<documentNumber>SS099993</documentNumber>
<nationality>ROU</nationality>
<personalNumber>1400088</personalNumber>
<expiryDate>1981-09-13</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<countryValid>true</countryValid>
<lastNameValid>true</lastNameValid>
<nationalityValid>true</nationalityValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>false</expirationDateControlKey>
<dateOfBirthControlKey>false</dateOfBirthControlKey>
<globalControlKey>false</globalControlKey>
<line2ControlKey>false</line2ControlKey>
</controlKeys>
</RomanianIdCard>
Romanian Biometric Identity Card

Romanian Biometric Identity Card

<RomanianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>RO_BIOMETRIC_ID_CARD</documentType>
<country>ROU</country>
<lastName>MANOLE/<lastName>
<firstNames>
<firstNames>CORINA</firstNames>
<firstNames>IOANA/<firstNames>
</firstNames>
<dateOfBirth>1983-07-03</dateOfBirth>
<gender>Female</gender>
<documentNumber>SP1234691</documentNumber>
<personalNumber>2830703460094</personalNumber>
<nationality>ROU</nationality>
<expiryDate>2031-09-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</RomanianBiometricIdCard>
Estonian biometric ID card

Estonian biometric ID card

<EstonianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>EE_BIOMETRIC_ID_CARD</documentType>
<country>EST</country>
<lastName>JOEORG/<lastName>
<firstNames>
<firstNames>JAAK/<firstNames>
<firstNames>KRISTJAN</firstNames>
</firstNames>
<dateOfBirth>1980-01-08</dateOfBirth>
<gender>Male</gender>
<documentNumber>AS0002262</documentNumber>
<personalNumber>38001085718</personalNumber>
<nationality>EST/<nationality>
<expiryDate>2026-06-28</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</EstonianBiometricIdCard>
Latvian biometric identity card

Latvian biometric identity card

<LatvianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>LV_BIOMETRIC_ID_CARD</documentType>
<country>LVA</country>
<lastName>PARAUDZINA/<lastName>
<firstNames>
<firstNames>MARA/<firstNames>
</firstNames>
<dateOfBirth>1982-12-12</dateOfBirth>
<gender>Female</gender>
<documentNumber>PA9925010</documentNumber>
<personalNumber>321251-72698</personalNumber>
<nationality>LVA</nationality>
<expiryDate>2031-07-21</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</LatvianBiometricIdCard>
Cypriot biometric identity card

Cypriot biometric identity card

<CypriotBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>CY_BIOMETRIC_ID_CARD</documentType>
<country>CYP</country>
<lastName>ANONYMOU</lastName>
<firstNames>
<firstNames>AFRODITI</firstNames>
</firstNames>
<dateOfBirth>1989-01-15</dateOfBirth>
<gender>Female</gender>
<documentNumber>CR0000000</documentNumber>
<nationality>CYP</nationality>
<expiryDate>2024-09-23</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</CypriotBiometricIdCard>
Maltese biometric identity card

Maltese biometric identity card

<MalteseBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>MT_BIOMETRIC_ID_CARD</documentType>
<country>MLT</country>
<lastName>CAMILLERI/<lastName>
<firstNames>
<firstNames>MARIA</firstNames>
</firstNames>
<dateOfBirth>1984-08-22</dateOfBirth>
<gender>Female</gender>
<documentNumber>13751801</documentNumber>
<personalNumber>0000000M</personalNumber>
<nationality>MLT</nationality>
<expiryDate>2030-09-09</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</MalteseBiometricIdCard>
Czech biometric ID card

Czech biometric ID card

<CzechBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>CZ_BIOMETRIC_ID_CARD</documentType>
<country>CZE/<country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>VZOR</firstNames>
</firstNames>
<dateOfBirth>1993-01-12</dateOfBirth>
<gender>Male</gender>
<documentNumber>998010524</documentNumber>
<nationality>CZE/<nationality>
<expiryDate>2033-05-12</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</CzechBiometricIdCard>
Slovak biometric identity card

Slovak biometric identity card

<SlovakBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>SK_BIOMETRIC_ID_CARD</documentType>
<country>SVK</country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>VZORKA</firstNames>
</firstNames>
<dateOfBirth>2011-11-11</dateOfBirth>
<gender>Female</gender>
<documentNumber>XX023058</documentNumber>
<personalNumber>1111111111</personalNumber>
<nationality>SVK</nationality>
<expiryDate>2032-10-11</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</SlovakBiometricIdCard>
Finnish biometric ID card

Finnish biometric ID card

<FinnishBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>FI_BIOMETRIC_ID_CARD</documentType>
<country>FIN</country>
<lastName>MATKAILIJA/<lastName>
<firstNames>
<firstNames>MATTI/<firstNames>
</firstNames>
<dateOfBirth>1950-01-01</dateOfBirth>
<gender>Male</gender>
<documentNumber>545272270</documentNumber>
<personalNumber>-----------</personalNumber>
<nationality>FIN</nationality>
<expiryDate>2026-08-02</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</FinnishBiometricIdCard>
Swedish biometric ID card

Swedish biometric ID card

<SwedishBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>SE_BIOMETRIC_ID_CARD</documentType>
<country>SWE/<country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>SVEA</firstNames>
</firstNames>
<dateOfBirth>1982-08-21</dateOfBirth>
<gender>Female</gender>
<documentNumber>XA0000002</documentNumber>
<personalNumber>8208212384</personalNumber>
<nationality>SWE/<nationality>
<expiryDate>2027-01-01</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</SwedishBiometricIdCard>
Greek biometric identity card

Greek biometric identity card

<GreekBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>GR_BIOMETRIC_ID_CARD</documentType>
<country>GRC</country>
<lastName>ELLINAS</lastName>
<firstNames>
<firstNames>GEORGIOS/<firstNames>
</firstNames>
<dateOfBirth>1975-05-15</dateOfBirth>
<gender>Male</gender>
<documentNumber>Z00014375</documentNumber>
<nationality>GRC</nationality>
<expiryDate>2033-09-19</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</GreekBiometricIdCard>
Swiss biometric identity card

Swiss biometric identity card

<SwissBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>CH_BIOMETRIC_ID_CARD</documentType>
<country>CHE</country>
<lastName>SCHWEIZER SAMPLE</lastName>
<firstNames>
<firstNames>HELVETIA/<firstNames>
</firstNames>
<dateOfBirth>1995-08-01</dateOfBirth>
<gender>Female</gender>
<documentNumber>S1A00A00</documentNumber>
<nationality>CHE/<nationality>
<expiryDate>2033-03-31</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</SwissBiometricIdCard>
Croatian biometric identity card

Croatian biometric identity card

<CroatianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>HR_BIOMETRIC_ID_CARD</documentType>
<country>HRV</country>
<lastName>SPECIMEN</lastName>
<firstNames>
<firstNames>SPECIMEN</firstNames>
</firstNames>
<dateOfBirth>1979-11-25</dateOfBirth>
<gender>Female</gender>
<documentNumber>115501830</documentNumber>
<personalNumber>05781305459</personalNumber>
<nationality>HRV</nationality>
<expiryDate>2026-08-02</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</CroatianBiometricIdCard>
Hungarian biometric identity card

Hungarian biometric identity card

<HungarianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>HU_BIOMETRIC_ID_CARD</documentType>
<country>HUN</country>
<lastName>SZEPENE KISS</lastName>
<firstNames>
<firstNames>ROZALIA/<firstNames>
</firstNames>
<dateOfBirth>1979-06-30</dateOfBirth>
<gender>Female</gender>
<documentNumber>000188KE/<documentNumber>
<nationality>HUN</nationality>
<expiryDate>2028-06-30</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>true</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</HungarianBiometricIdCard>
Norwegian biometric ID card

Norwegian biometric ID card

<NorwegianBiometricIdCard>
<documentInfo>
<numberOfCharacters>90</numberOfCharacters>
<documentType>NO_BIOMETRIC_ID_CARD</documentType>
<country>NOR</country>
<lastName>OESTENBYEN</lastName>
<firstNames>
<firstNames>AASAMUND/<firstNames>
<firstNames>SPECIMEN</firstNames>
</firstNames>
<dateOfBirth>1956-04-23</dateOfBirth>
<gender>Male</gender>
<documentNumber>JGD000824</documentNumber>
<personalNumber>230456-12345</personalNumber>
<nationality>XXX</nationality>
<expiryDate>2026-06-11</expiryDate>
</documentInfos>
<documentInfoValidation>
<numberOfCharactersValid>true</numberOfCharactersValid>
<documentTypeValid>true</documentTypeValid>
<lastNameValid>true</lastNameValid>
<dateOfBirthValid>true</dateOfBirthValid>
<genderValid>true</genderValid>
<countryValid>true</countryValid>
<documentNumberValid>true</documentNumberValid>
<nationalityValid>false</nationalityValid>
<expirationDateValid>true</expirationDateValid>
</documentInfosValidation>
<controlKeys>
<expirationDateControlKey>true</expirationDateControlKey>
<documentNumberControlKey>true</documentNumberControlKey>
<dateOfBirthControlKey>true</dateOfBirthControlKey>
<globalControlKey>true</globalControlKey>
</controlKeys>
</NorwegianBiometricIdCard>
Income tax

Income tax

<FrenchIncomeTaxes>
<documentInfo>
<publicationDate/>
<signatureDate>2022-06-13</signatureDate>
<taxableIncomeReference>44444/<taxableIncomeReference>
<sharesNumber>1</sharesNumber>
<noticeReference>2222222222222</noticeReference>
<incomeYear>2021</incomeYear>
<declarant1>XXXXX YYYYYYY</declarant1>
<taxNumberDeclarant1>777777777777</taxNumberDeclarant1>
<declarant2/>
<taxNumberDeclarant2>null</taxNumberDeclarant2>
<collectionDate>2022-07-31</collectionDate>
</documentInfos>
<certificate>
<validityStartDate>2022-06-21</validityStartDate>
<validityEndDate>2024-06-21</validityEndDate>
<issuerReference>FR04</issuerReference>
<issuerName>AriadNEXT/<issuerName>
<subjectReference>FPE3</subjectReference>
<issuer>DIRECTORATE GENERAL OF PUBLIC FINANCES/<ISSUER>
<datesConsistency>true</datesConsistency>
<digitalSignature>true</digitalSignature>
</certificate>
</FrenchIncomeTaxes>
Civil servant pay slip

Civil servant pay slip

<FrenchCivilServantPayslip>
<documentInfo>
<fullName>MR XXXX YYYY/<fullName>
<employSiret>55555555555555</employerSiret>
<periodStartDate>2021-11-01</periodStartDate>
<periodEndDate>2021-11-30</periodEndDate>
<contractStartDate>1111-11-11</contractStartDate>
<netTaxableSalary>2290.3</netTaxableSalary>
<netTaxableAccumulatedSalary>27138.31</netTaxableAccumulatedSalary>
</documentInfos>
<certificate>
<validityStartDate>2020-03-30</validityStartDate>
<validityEndDate>2023-03-31</validityEndDate>
<issuerReference>FR04</issuerReference>
<issuerName>AriadNEXT/<issuerName>
<subjectReference>FPE1</subjectReference>
<issuer>DIRECTORATE GENERAL OF PUBLIC FINANCES/<ISSUER>
<datesConsistency>true</datesConsistency>
<digitalSignature>true</digitalSignature>
</certificate>
</FrenchCivilServantPayslip>
CAF payment certificate (1 file / document of 2 pages)

CAF payment certificate (1 file / document of 2 pages)

<FrenchCafPaymentCertificate>
<cafPaymentCertificates>
<cafPaymentCertificates>
<documentInfo>
<documentDate>2020-02-05</documentDate>
<dateOfBirth>1980-08-14</dateOfBirth>
<numberOfPages>2</numberOfPages>
<beneficiaryNumberHeader>8888888 M</beneficiaryNumberHeader>
<dateHourFooter>
<dateHourFooter>050220202336</dateHourFooter>
<dateHourFooter>050220202336</dateHourFooter>
</dateHourFooter>
<beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
</beneficiaryNumberFooter>
<barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
</barcodeNumber>
<barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
</barcodeNumberDecoded>
</documentInfos>
<documentInfoValidation>
<datesHeaderFooterValid>true</datesHeaderFooterValid>
<beneficiaryNumberHeaderFooterValid>true</beneficiaryNumberHeaderFooterValid>
<beneficiaryNumberBarcodeNumberValid>true</beneficiaryNumberBarcodeNumberValid>
<barcodeNumberBarcodeValid>true</barcodeNumberBarcodeValid>
<datesHeaderMetasValid>true</datesHeaderMetasValid>
<datesFooterMetasValid>true</datesFooterMetasValid>
</documentInfosValidation>
</cafPaymentCertificates>
</cafPaymentCertificates>
<documentsValidation/>
</FrenchCafPaymentCertificate>
CAF payment certificate (2 files / documents of 2 pages)

CAF payment certificate (2 files / documents of 2 pages)

<FrenchCafPaymentCertificate>
<cafPaymentCertificates>
<cafPaymentCertificates>
<documentInfo>
<documentDate>2020-02-05</documentDate>
<dateOfBirth>1980-08-14</dateOfBirth>
<numberOfPages>2</numberOfPages>
<beneficiaryNumberHeader>8888888 M</beneficiaryNumberHeader>
<dateHourFooter>
<dateHourFooter>050220202336</dateHourFooter>
<dateHourFooter>050220202336</dateHourFooter>
</dateHourFooter>
<beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
</beneficiaryNumberFooter>
<barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
</barcodeNumber>
<barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
</barcodeNumberDecoded>
</documentInfos>
<documentInfoValidation>
<datesHeaderFooterValid>true</datesHeaderFooterValid>
<beneficiaryNumberHeaderFooterValid>true</beneficiaryNumberHeaderFooterValid>
<beneficiaryNumberBarcodeNumberValid>true</beneficiaryNumberBarcodeNumberValid>
<barcodeNumberBarcodeValid>true</barcodeNumberBarcodeValid>
<datesHeaderMetasValid>true</datesHeaderMetasValid>
<datesFooterMetasValid>true</datesFooterMetasValid>
</documentInfosValidation>
</cafPaymentCertificates>
<cafPaymentCertificates>
<documentInfo>
<documentDate>2021-02-05</documentDate>
<dateOfBirth>1980-08-14</dateOfBirth>
<numberOfPages>2</numberOfPages>
<beneficiaryNumberHeader>8888888 M</beneficiaryNumberHeader>
<dateHourFooter>
<dateHourFooter>050220212336</dateHourFooter>
<dateHourFooter>050220212336</dateHourFooter>
</dateHourFooter>
<beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
<beneficiaryNumberFooter>8888888 M</beneficiaryNumberFooter>
</beneficiaryNumberFooter>
<barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
<barcodeNumber>88888888888800000000</barcodeNumber>
</barcodeNumber>
<barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
<barcodeNumberDecoded>88888888888800000000</barcodeNumberDecoded>
</barcodeNumberDecoded>
</documentInfos>
<documentInfoValidation>
<datesHeaderFooterValid>true</datesHeaderFooterValid>
<beneficiaryNumberHeaderFooterValid>true</beneficiaryNumberHeaderFooterValid>
<beneficiaryNumberBarcodeNumberValid>true</beneficiaryNumberBarcodeNumberValid>
<barcodeNumberBarcodeValid>true</barcodeNumberBarcodeValid>
<datesHeaderMetasValid>true</datesHeaderMetasValid>
<datesFooterMetasValid>true</datesFooterMetasValid>
</documentInfosValidation>
</cafPaymentCertificates>
</cafPaymentCertificates>
<documentsValidation>
<datesOfBirthValid>true</datesOfBirthValid>
<datesHeaderFooterValid>true</datesHeaderFooterValid>
<beneficiaryNumberHeaderFooterValid>true</beneficiaryNumberHeaderFooterValid>
<beneficiaryNumberBarcodeNumberValid>true</beneficiaryNumberBarcodeNumberValid>
<barcodeNumberBarcodeValid>true</barcodeNumberBarcodeValid>
<datesHeaderMetasValid>true</datesHeaderMetasValid>
<datesFooterMetasValid>true</datesFooterMetasValid>
<modificationDateMetasValid>true</modificationDateMetasValid>
</documentsValidation>
</FrenchCafPaymentCertificate>

Status codes API

The following codes are returned by the API:

CodeTypeDescription
200Verification okThe audit went smoothly
401Not allowedThe API key is not correct
402Insufficient appropriationsThere are no more audit appropriations for the given period
422Illegible documentThe document is not recognized or incorrect

Checks performed on each type of document

Below you will find the list and description of the different fields and checks carried out on each type of identity document compatible with our products.

Passports

Passports

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument number (depending on the country)
nationalityThongNationality of the holder
personalNumberThongPersonal number of the holder
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid? (88)
documentTypeValidBooleanIs the type of document detected valid? (“P” for passport)
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
expirationDateValidBooleanIs the extracted expiration date format valid?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
personalNumberControlKeyBooleanIs the personal number key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
line2ControlKeyBooleanIs the control key for row 2 valid?
globalControlKeyBooleanIs the global control key valid?
French identity card

French identity card

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
departmentThongDepartment Number
documentCreationDateThongDocument Creation Date
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid? (72)
documentTypeValidBooleanIs the type of document detected valid?
countryValidBooleanIs the country code valid (“FRA”)?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
departmentValidBooleanIs the format of the extracted department number valid?
departmentFormatFirstLineValidBooleanDoes the department number comply with the formalism related to the date of creation of the document?
documentCreationDateValidBooleanIs the format of the extracted document creation date valid?
departmentConsistencyBooleanDoes the department number of line 1 correspond to that of line 2?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
line2ControlKeyBooleanIs the control key for row 2 valid?
globalControlKeyBooleanIs the global control key valid?
Romanian ID card

Romanian ID card

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument number (depending on the country)
nationalityThongNationality of the holder
personalNumberThongPersonal number of the holder
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid? (88)
documentTypeValidBooleanIs the type of document detected valid? (“P” for passport)
countryValidBooleanIs the extracted country code valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
nationalityValidBooleanIs the nationality code valid?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
expirationDateValidBooleanIs the extracted expiration date format valid?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
line2ControlKeyBooleanIs the control key for row 2 valid?
globalControlKeyBooleanIs the global control key valid?
Biometric ID cards

Biometric ID cards

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument Number
personalNumberThongPersonal number (present on some cards only)
nationalityThongNationality of the holder
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
countryValidBooleanIs the extracted country format valid (“FRA”)?
documentNumberValidBooleanIs the format of the extracted document number valid (9 characters)?
nationalityValidBooleanIs the nationality format valid (“FRA”)?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
documentNumberControlKeyBooleanIs the document number check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
globalControlKeyBooleanIs the global control key valid?

French biometric driver’s license

French biometric driver’s license

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
documentNumberThongDocument Number
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
countryValidBooleanIs the extracted country format valid (“FRA”)?
documentNumberValidBooleanIs the format of the extracted document number valid (9 characters)?
documentNumberControlKeyBooleanIs the document number check key valid?
globalControlKeyBooleanIs the global control key valid?

Estonian Biometric Driver’s License

Estonian Biometric Driver’s License

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry code
documentNumberThongDocument Number
personalNumberThongPersonal number of the holder
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
countryValidBooleanIs the country code correct?
documentNumberValidBooleanIs the format of the extracted document number valid?
personalNumberValidBooleanIs the format of the extracted document number valid?
globalControlKeyBooleanIs the global control key valid?

Croatian Biometric Driver’s License

Croatian Biometric Driver’s License

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
documentNumberThongDocument Number
personalNumberThongPersonal number of the holder
expirationDateThongEnd date
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
documentNumberValidBooleanIs the format of the extracted document number valid?
personalNumberValidBooleanIs the format of the extracted document number valid?
expirationDateValidBooleanIs the format of the expiry date correct?
globalControlKeyBooleanIs the global control key valid?

French residence permit

French residence permit

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument Number
personalNumberThongPersonal number of the holder
nationalityThongNationality of the holder
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
countryValidBooleanIs the extracted country format valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
documentNumberValidBooleanIs the format of the extracted document number valid (9 characters)?
personalNumberValidBooleanIs the format of the extracted personal number valid (10 characters)?
nationalityValidBooleanIs the nationality format valid (“FRA”)?
expirationDateValidBooleanIs the format of the extracted expiry date valid?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
documentNumberControlKeyBooleanIs the document number check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
globalControlKeyBooleanIs the global control key valid?

US passport card

US passport card

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument Number
nationalityThongNationality of the holder (“USA”)
expirationDateThongEnd date of validity of the document
stateDepDocControlNumberThongState department document control number
numberOfCharactersValidBooleanIs the number of characters detected valid? (90)
documentTypeValidBooleanIs the type of document detected valid?
countryValidBooleanIs the extracted country format valid (“USA”)?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
documentNumberValidBooleanIs the format of the extracted document number valid?
nationalityValidBooleanIs the nationality format valid?
expirationDateValidBooleanIs the format of the extracted expiry date valid?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
documentNumberControlKeyBooleanIs the document number check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
globalControlKeyBooleanIs the global control key valid?

US border crossing card

US border crossing card

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument Number
visaNumberThongVisa number
nationalityThongNationality of the holder
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid? (90)
documentTypeValidBooleanIs the type of document detected valid? (9 characters)
countryValidBooleanIs the extracted country format valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
documentNumberValidBooleanIs the format of the extracted document number valid?
nationalityValidBooleanIs the nationality format valid?
expirationDateValidBooleanIs the format of the extracted expiry date valid?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
documentNumberControlKeyBooleanIs the document number check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
globalControlKeyBooleanIs the global control key valid?

Algerian Biometric driving license

Algerian Biometric driving license

Parameter NameTypeDescription
numberOfCharactersThongNumber of characters extracted from the MRZ strip
documentTypeThongDocument Type
CountryThongCountry
lastNameThongName of the holder
firstNamesArrayHolder’s first names
dateOfBirthThongHolder’s date of birth
genderThongType of owner
documentNumberThongDocument Number
nationalityThongNationality of the holder (“FRA”)
expirationDateThongEnd date of validity of the document
numberOfCharactersValidBooleanIs the number of characters detected valid
documentTypeValidBooleanIs the type of document detected valid?
lastNameValidBooleanDoes the name include unauthorized characters or numbers?
dateOfBirthValidBooleanIs the extracted date of birth format valid?
genderValidBooleanIs the character referring to gender valid?
countryValidBooleanIs the extracted country format valid (“FRA”)?
documentNumberValidBooleanIs the format of the extracted document number valid (9 characters)?
nationalityValidBooleanIs the nationality format valid (“FRA”)?
expirationDateControlKeyBooleanIs the end-of-validity date check key valid?
documentNumberControlKeyBooleanIs the document number check key valid?
dateOfBirthControlKeyBooleanIs the date of birth key valid?
globalControlKeyBooleanIs the global control key valid?

Shopping Cart
Scroll to Top