Skip to content

aidcone/oranjekruis-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔶 Oranje Kruis API

This library uses Puppeteer to fetch Oranje Kruis certificates and diplomas.
Originally created by Ruben Uijtdewilligen for EHBO Vereniging Roosendaal.

Usage

There is just one function, getCerts, and it takes two arguments. The first is the certificate number and the second is the certificate holder's last name without prefix.

import { getCerts } from '../index.js';
getCerts('12345678', 'Smith').then((certs) => {
    // [
    //     {
    //         name: 'Eerste Hulp',
    //         type: 'Diploma',
    //         received: '11-11-2011',
    //         expires: '11-11-2022'
    //     }
    // ]
});