Quick Start

This page will help you get started with Enrich API.

Authentication

The Enrich API is a set of HTTPS endpoints you can use to programmatically fetch from our SMARTe database and add into your existing technology stack and workflows. The input and response are in JSON format which is commonly used to support most of the CRMs and MAPs.

URL

POST https://api.smarte.pro/v7/enrich

Headers

Below are the mandatory input parameter to call Enrich API.

API Key

All API calls must include a valid API key. This is our way of authenticating your call. API key will be required as a part of request header. The API key can also be sent in the JSON body. We support both ways of validating the access token.

"apikey": "<keyname>"

This is how your request headers will look:

"content-type": "application/json"
"apikey": "<key_name>"

The application/json is required as well to submit your data in JSON format.

Input Field Requirement

It's best to provide as much info as possible. Try passing all the available input fields of company and contacts for better match rate and enrichment.

Below is the sample input request. Here's how you would do that using a simple HTTP POST request using curl command.

curl --request POST \
--url 'https://api.smarte.pro/v7/enrich' \
--header 'apikey: 43f554rr-351a-387r-b533-38b0000xxxxx' \
--header 'content-type: application/json' \
--data '{"recordId": "123a456b",
"compName": "Smarte, Inc",
"compWebsite":"www.smarteinc.com",
"conFullName": "Sanjay Gala",
"conFirstName": "",
"conLastName": "",
"conEmail": "[email protected]",
"conJobTitle": "",
"country": “USA"
}'

Results

Based on your inputs the system will find the best possible match and share it as response.

{
    "accuracy": "A+",
    "compAddr": "440 N Wolfe Road",
    "compCity": "Sunnyvale",
    "compCountry": "United States",
    "compCountryIsoCode2": "US",
    "compEmpCount": "110",
    "compEmpRange": "51 to 200",
    "compFoundingYear": "2005",
    "compGlobalRegions": "North America",
    "compGUID": "6003CDF9BFAFA261",
    "compIndustry": "Software Development",
    "compIsMnc": "Yes",
    "compIsSubsidiary": "No",
    "compLegalStatus": "Privately Held",
    "compMetroArea": "San Francisco Bay Area",
    "compNaicsCodes": "5112 | 51121 | 511210",
    "compNaicsDescription": "5112 - Software Publishers | 51121 - Software Publishers | 511210 - Software Publishers",
    "compName": "SMARTe",
    "compNameAka": "SMARTe",
    "compParentCountry": "United States",
    "compPhoneNo": "+1 408-998-5288",
    "compPubProfileUrl": "https://www.linkedin.com/company/smarte-pro",
    "compRevenue": "35317261",
    "compRevRange": "$25M - $50M",
    "compSicCodes": "5045 | 7372 | 504599 | 737299 | 50459903 | 73710301",
    "compSicDescription": "5045 - Computers, Peripherals, And Software | 7372 - Prepackaged Software | 504599 - Computers, Peripherals, And Software, Nec | 737299 - Prepackaged Software, Nec | 50459903 - Computer Software | 73710301 - Computer Software Development",
    "compState": "California",
    "compWebsite": "smarte.pro",
    "compZipcode": "94085",
    "conEmail": "[email protected]",
    "conFirstName": "Sanjay",
    "conFullName": "Sanjay Gala",
    "conFunctions": "Top Management",
    "conGUID": "A3C5BBDE020F1339D32ECC109D77ECFE",
    "conJobStartedOn": "Aug-2005",
    "conJobTitleEn": "Founder & CEO",
    "conJobPromotedOn": "Aug-2005",
    "conLastName": "Gala",
    "conLevels": "Founder/CXO",
    "conWorkLocArea": "San Jose, California, United States",
    "conPubProfileUrl": "https://www.linkedin.com/in/sanjay-gala-029328",
    "conSubFunctions": "Founder & CEO",
    "conWorkLocAddr": "440 N Wolfe Road",
    "conWorkLocCity": "Sunnyvale",
    "conWorkLocCountry": "United States",
    "conWorkLocPhoneNo": "+1 408-998-5288",
    "conWorkLocState": "California",
    "conWorkLocZipcode": "94085",
    "recordId": "123a456b",
    "recordStatus": "active",
    "smarteTransactionId": "c0735599-0ea2-4bf7-a0ab-d8d15f602423",
    "compIsHq": "Yes",
    "mobileNumber": "+1 408-834-8842",
    "directDial": "+91 98192 07589"
}

What’s Next