Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

everyoneapi

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

everyoneapi

Everyoneapi API wrapper

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-everyoneapi

Build

Node Client library for EveryoneApi

Install

Run

npm install everyoneapi

Getting Started

  • Install everyoneapi,
  • Get account sid and auth token - to use the Everyone API you need these data.
  • Set account sid and auth token - see code below:
var everyoneapi = require("everyoneapi");

everyoneapi.config.sid = "your account sid";
everyoneapi.config.token = "your auth token";

Usage

var everyoneapi = require("everyoneapi");

//Using only a phone number
everyoneapi.getInfo("+1234567890", function(err, res){});

//Using phone number with a data point
everyoneapi.getInfo("+1234567890", "name", function(err, res){});

//Using phone number with some data points
everyoneapi.getInfo("+1234567890", ["name", "cnam", "gender"], function(err, res){});

Read Everyone Api documentation for more details

Keywords

FAQs

Package last updated on 27 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc