get-mexican-data-by-curp
Version:
Verify CURP and obtain personal information from the Mexican government CURP. It scrapes official site and another providers.
15 lines (14 loc) • 353 B
TypeScript
export interface Mexican {
curp: string;
fatherName: string;
motherName: string;
name: string;
gender: string;
birthday: string;
birthState: string;
statusCurp?: string;
pdf?: string;
nationality?: string;
probatoryDocument?: string;
probatoryDocumentData?: Record<string, string | number | undefined>;
}