18.1.0 • Published 7 days ago

preciselyapis-client v18.1.0

Weekly downloads
6
License
Unlicense
Repository
github
Last release
7 days ago

Precisely

Precisely APIs

Description

Precisely APIs Enrich your data, and enhance your applications, business processes and workflows with dozens of powerful location & identity APIs.

Precisely APIs:

  • Geocode: Accurate Geocoding. Convert individual or batch collections of addresses to latitude & longitude coordinates and vice versa. Useful for enhancing & enriching your customer addresses.

  • Address Autocomplete: Address Autocomplete. Build Address Autocomplete into your websites. The Address Autocomplete API returns an autocompleted list of addresses based on the input of a partial address. Useful for any local search, checkout, shipping, or billing experiences on your website. Increase e-commerce conversion by 3-6%!

  • Address Autocomplete Enterprise :Build Address Autocomplete Enterprise into your websites. The Address Autocomplete Enterprise API returns an autocompleted list of addresses based on the input of a partial address. It is useful for any local search, checkout, shipping, or billing experiences on your website.

  • Maps: Beautiful Visualization. Add your data and/or Precisely data atop beautiful maps for visualizations. Choose from three map styles - Bronze, Iron, and Steel.

  • Zones: Smart Zones. The Zones API returns geographic zones by Radius, Drive Distance, Drive Time and highly localized geofence zones with the input of Location Coordinates or Addresses. Useful for anyone wanting to create smarter geofence zones for Local Engagement and Analysis.

  • Routing: Accurate Routing. The Routing API returns Point-to-Point and Multi-Point Travel Directions by Various Travel Modes. Critical for any Simple or Complex Routing Requirement.

  • Streets: Global Street Information. Enrich your applications, business processes, and workflows with global street information including nearest intersections and speed limits. The Streets API accepts an address or location and returns nearest intersection information. The speed limit method accepts a series of locations and returns speed limits along a street segment.

  • Places : Global Place Data. Enrich your applications, business processes, and workflows with over 180 million of global retail businesses and landmark points-of-interest. The Places API accepts multiple powerful inputs & filtering options and returns thousands of records in a single API request. The Places API also supports global typeahead place search. Useful for enriching your data and/or analytics processes with rich commercial business information and place names.

  • Risks: Risks Insights. Capture Crime, Earthquake, Flood, Fire, Fire Station and Distance-to-Flood-Hazard risk data for Analysis, Planning, Claims, and Mitigation. The Risks API returns risk intelligence with the input of Location Coordinates or Addresses. Critical for any impact analysis involving threats to lives or property.

  • 911/PSAP: Emergency call handling. Integrate Public Safety Answering Point (PSAP) administrative call routing information plus Authority Having Jurisdiction (AHJ) phone numbers into your emergency services products and services. The 911/PSAP API retrieves 10-digit phone numbers and local contact info with the input of a location coordinate. Useful for emergency services administrators, call handlers, and dispatchers.

  • Demographics : Audience Enrichment. Add local demographics and lifestyle segmentation to your people profiles. The Demographics & Lifestyle API returns household demographics and lifestyle characteristics with the input of an address or location coordinate. Know more about your customers and their customers.

  • Local Tax: Local Tax. Add hyperlocal tax rates to your applications, business processes, and workflows. The Local Tax API returns local tax rates with the input of location coordinates or addresses. Critical for any billing, commerce, payment, or payroll application or service.

  • Telecomm Info: Service Provider Intelligence. Identify Local Exchange Carrier presence, area codes, exchanges, and more within a Rate Center area. The Telecomm Info API retrieves Incumbent Local Exchange Carrier (ILEC) doing-business-as names along with NPA/NXX, LATA, and phone number ranges with the input of an address or location coordinates. Useful for local telecommunications competitive intelligence, partnerships, and provisioning subscribers.

  • Time Zone: Local time. The Time Zone API returns time zones and UTC offsets with the input of a location coordinate or address. Useful for do-not-call, logistics, and customer engagement applications, business processes and workflows.

  • Geolocation: Device Location. The Geolocation API returns location coordinates based on the input of an IP Address or Wi-Fi Access point MAC address. Useful for a variety of applications, business processes and workflows in eCommerce, Fraud Detection, Physical-Digital interactions, Field Service and more.

  • Schools: School Listings. Gather local multiple school listings, types, districts and education levels for your applications. The Schools API accepts multiple powerful inputs & geographic filtering options and returns nearby school listings and additional data a single API request. Useful for enriching your applications and websites.

  • Neighborhoods: Neighborhood Insights. Integrate global neighborhood names and classification information into your applications and enrich other data. The Neighborhood API accepts latitude & longitude coordinates and returns the corresponding neighborhood name & type. Useful for a wide range of data enrichment use cases.

  • Property Information: Property Insights. Integrate extensive residential & commercial property information into your applications. The Property Information API returns key property attributes for millions of US properties with the input of Location Coordinates or Addresses. Useful for Real Estate use cases or those involving risk assessments.

  • Address Verification: Real, accurate and complete address. Eliminate errors in address data, improve customer experience. The Address Verification API makes communication easier, faster and effortless by enriching customer details, keeping it up-to-date and maintaining its accuracy and consistency. It eliminates redundancy in reaching out to customers and makes it easy for distinct functional areas to work seamlessly in improving customer relationship.

  • Email Verification: Email address validation and protection. The Email Verification API corrects and validates your email addresses to protect your database from invalid, toxic and undesirable email addresses. We help you avoid a damaged sender reputations by flagging those bouncing emails, spam trap hits, honeypots, stale lists and do-not-contact list before you have a chance to use them.

  • Addresses: Gather multiple Addresses if you don’t have them and use these to query all other Precisely APIs. The Addresses API accepts names of a boundary such as zip code, neighborhood, county, and city—as well as your custom geographic boundaries or drivetimes & drive distances—and returns all known & valid Addresses associated with these names, or Addresses contained with the supplied or chosen geographic boundary.

  • Phone Verification: The Phone Verification API accepts any phone number as input and returns verification information, Service Provider name, and more. Useful to verify if phone numbers exist to reduce fraud and improve communications.

The following platforms are supported by Precisely SDKs:

Click here for detailed Documentation on Precisely APIs

PreciselyAPIs NodeJS SDK

Description

PreciselyAPIs NodeJS SDK facilitates you to build NodeJS applications using Precisely APIs.

Getting Started

To get started with NodeJS SDK, you must first register at Precisely APIs Home Page and obtain your API Key and Secret to get started with the NodeJS SDK and call Precisely APIs. For more information refer to ‘Getting Started with NodeJS SDK’ section in documentation.

PreciselyAPIsSDK-NodeJS

Building Project

To build the project locally by downloading from GitHub

npm install

npm run build

Requirements

Building the API client library requires latest NodeJS to be installed.

Installation

To install the API client library to your local project, simply execute:

npm install preciselyapis-client

To deploy it globally, simply execute:

npm install -g preciselyapis-client 

Getting Started

Please follow the installation instruction and execute the following NodeJS code:

//We are getting refrence to the installed preciselyapis-client package
const PreciselyAPINodeJS = require('preciselyapis-client');
try {
    // Configure OAuth2 API_KEY and SECRET for authorization
    const oAuth = new PreciselyAPINodeJS.OAuth();
    oAuth.oAuthApiKey = "API_KEY";
    oAuth.oAuthSecret = "SECRET";

    oAuth.getOAuthCredentials().then((data) => {
        var PSAP911ServiceApiExample = new PreciselyAPINodeJS.PSAP911ServiceApi(data.body);
        PSAP911ServiceApiExample.getPSAPByAddress("950 Josephine Street Denver CO 80204").then((response) => {
            console.log("Result " + JSON.stringify(response.data));
        }).catch((response) => {
            console.log("Error " + JSON.stringify(response.message));
        });
    }).catch((error) => {
        console.log("Error " + JSON.stringify(error.response.data.errors))
    });
} catch (error1) {
    console.log("Exception raised" + error1);
}
18.1.0

7 days ago

18.0.0

3 months ago

17.1.0

7 months ago

17.0.0

8 months ago

16.0.2

9 months ago

16.0.1

10 months ago

16.0.3

9 months ago

15.0.0

1 year ago

16.0.0

1 year ago

14.0.0

1 year ago

13.0.0

1 year ago

12.0.3

1 year ago

12.0.4

1 year ago

12.0.5

1 year ago

12.0.2

2 years ago

12.0.1

2 years ago

12.0.0

2 years ago

11.9.3

2 years ago

11.9.4

2 years ago

11.7.0

2 years ago

11.9.2

2 years ago

11.8.0

2 years ago

11.8.1

2 years ago

11.6.0

3 years ago

11.5.0

3 years ago

11.0.2

3 years ago

11.0.1

3 years ago

11.0.0

3 years ago

10.5.1

3 years ago

10.5.0

3 years ago

10.0.0

3 years ago

9.5.1

4 years ago

9.5.0

4 years ago

9.0.0

4 years ago