UNPKG

get-mexican-data-by-curp

Version:

Verify CURP and obtain personal information from the Mexican government CURP. It scrapes official site and another providers.

10 lines (9 loc) 263 B
import { Curp, Mexican, Provider } from '../models'; export declare class Arsus extends Provider { private apiKey; private readonly URL; constructor(apiKey: string); provide(curp: Curp): Promise<Mexican | { error: string; } | null>; }