0.0.2 • Published 4 years ago

snovio-api v0.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

snovio-api

Snov.io Api

Install

$ yarn add snovio-api --save

Get API User ID and API Secret

Usage

import SnovIO from "snovio-api";

const snov = new SnovIO("apiUserID", "apiSecret");

//You can find out the number of email addresses from a certain domain
snov.getEmailCount("vigiadepreco.com.br").then((count) => {
    console.log(`Email Count: ${count}`);
}).catch((err) => {
    console.log(err);
});

snov.getDomainSearch({
    domain: "vigiadepreco.com.br",
    type: "all",
    limit: 1,
    lastId: 0
}).then((res) => {
    console.log(`Email:`, res);
}).catch((err) => {
    console.log(err);
});
0.0.2

4 years ago

0.0.1

4 years ago