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

@salesflare/fullcontact-node-sdk

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@salesflare/fullcontact-node-sdk

NodeJS SDK for FullContact APIs

  • 1.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
3
Weekly downloads
 
Created
Source

Build Status npm version Node version

IMPORTANT: This SDK should be used server-side only. Using it in a browser would expose your API Key.

Installation

npm install fullcontact-node-sdk --save

Documentation

API Documentation can be found at https://docs.fullcontact.com/

JSDocs can be found in docs.md

Usage

Configuration

var fullcontact = require('fullcontact-node-sdk')({
	apiKey: '<API Key>',
	userAgent: '<AppName/Version>',
  returnFullResponse: true | false // Optional: when true, will return the full HTTP response, when false just the body. Defaults to false
});
Enrich APIs

All Enrich APIs can be found under the enrich property on the client.

const myLookup = async () => {
    try {
      const res = await fullcontact.enrich.person.enrich({ email: 'bart@fullcontact.com' })

      //do something with res
    } catch(e) {
      //handle error
    }
}
Tests

To run tests:

npm test

Keywords

FAQs

Package last updated on 05 May 2022

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