@proweblookofficial/proweblook-wa-validator

1.0.6 • Public • Published

Proweblook Wa Validator

This package provides a Node.js interface for validating phone numbers using the ProWebLook Phone Validator API.

Installation

You can install the package via npm:

Usage

npm install  @proweblookofficial/proweblook-wa-validator


// Import the ProweblookWaValidator class
const ProweblookWaValidator = require('@proweblookofficial/proweblook-wa-validator');

// Initialize the ProweblookWaValidator instance with your API key
const formValidator = new ProweblookWaValidator('your_api_key');

// Example usage
(async () => {
    try {
        // Check account balance
        const balance = await formValidator.checkBalance();
        console.log('Account balance:', balance);

        // Validate a phone number
        const phoneNumber = '919038655955';
        const countryCode = 'IN';
        const validationResponse = await formValidator.validatePhoneNumber(phoneNumber, countryCode);
        console.log('Phone number validation:', validationResponse);
    } catch (error) {
        console.error('Error:', error.message);
    }
})();

Make sure to replace 'your_api_key' with your actual API key provided by ProWebLook.

API Key

You need to sign up on ProWebLook to get your API key.

License

This package is open source and available under the [MIT License].

Readme

Keywords

none

Package Sidebar

Install

npm i @proweblookofficial/proweblook-wa-validator

Weekly Downloads

1

Version

1.0.6

License

ISC

Unpacked Size

3.02 kB

Total Files

3

Last publish

Collaborators

  • proweblookteam
  • dubeychandan996