Use the Enrich endpoint to fetch company and contact information in a single query. This resource enables your users to search based on one or more inputs, and immediately retrieve only the highest ranked information for the combination of inputs.
Endpoint
POST https://api.insideview.com/api/v1/enrich
Request
HTTP Headers
Header Name | Type | Required | Description |
accessToken | String | Yes |
Valid access token. |
Accept | String | No | Selects the response's content type. Valid values are application/json and application/xml (default). |
Accept-Language | String | No | Select the response's language and locale. Default value: en-en See Internationalization Support for more details. |
Form Parameters
The parameters should be sent as x-www-form-urlencoded parameters.
Note: sending the parameters as form-data parameters will generate an error.
Parameter Name | Type | Required | Description |
companyName | String | Yes1 | Company Name |
url | String | Yes1 | Company Web Site |
String | Yes1 | Contact Email | |
firstName | String | No | Contact First Name |
lastName | String | No | Contact Last Name |
fullName | String | No | Contact Full Name |
country | String | No | Country name (e.g. United States, France) |
state | String | No | |
city | String | No | |
street | String | No | |
zip | String | No | |
fax | String | No | Company fax number |
phone | String | No | Company phone number |
tickers | String | No | Company Ticker Symbol |
title | String | No | Contact designation at the company he/she is employed |
minConfidenceScore | String | No | Match score threshold for the API to return a match |
isContactRequired | Boolean | No | If set to true (default value: false), then a result is returned only if a contact is matched |
isPhoneRequired | Boolean | No | Returns only matched contacts if they have a phone number (If contact doesn't have phone number, company's phone number is considered) |
isEmailRequired | Boolean | No | Returns only matched contacts if they have a email address |
contactMatching | String | No | "all", "active"(Default), "inactive" are supported values for this parameter |
1: The request should include at least one of the three mandatory parameters.
Responses
HTTP 200
Returns either a JSON or XML data structure depending on the request Accept header.
The response, in case of a match, contains a company record and a contact record if a contact is also matched.
If there is no match the response will be an empty JSON structure or an empty enrichedLead node in an XML document depending on the Accept header of the query.
Name | type | Description |
company | Object | Company firmographic data |
company britishSics | List | List of British SIC codes |
company britishSics britishSic | String | British SIC code |
company britishSics description | String | British SIC code description |
company city | String | Company address: city |
company companyId | Integer | InsideView company ID |
company companyStatus | String | Company status (Operating, Subsidiary, Acquired, Liquidating, and OOB) |
company companyType | String | Company type (Public, Private, School, Government, Organization) |
company country | String | Company address: country |
company employees | String | Company employee count |
company employeeRange | String | Range of number of company employees |
company equifaxId | String | Company Equifax ID |
company fax | String | Company fax number |
company financialYearEnd | String | Company financial year end |
company fortuneRanking | String | Company Fortune ranking |
company industry | String | Company industry |
company industryCode | String | Company industry code |
company mostRecentQuarter | String | Most Recent Quarter Earning Date |
company naics | String | Company NAICS code |
company naicsDescription | String | Company NAICS description |
company name | String | Company name |
company parentCompanyId | String | Parent company InsideView id |
company parentCompanyName | String | Parent company name |
company parentCompanyCountry | String | Parent company country |
company phone | String | Company phone number |
company revenue | String | Company revenue (Millions of $) |
company revenueCurrency | String | Company revenue's currency (USD, EUR, GBP) |
company sic | String | Company SIC code |
company sicDescription | String | Company SIC description |
company foundationDate | String | Foundation date of the company |
comapny revenueRange | String | Revenue range of the company |
company sources | String | Sources for company attributes |
company state | String | Company address: state |
company street | String | Company address: street |
company subIndustry | String | Company sub-industry |
company subIndustryCode | String | Company sub-industry code |
company ticker | Array | Array of company's tickers details |
company ticker tickerName | String | Ticker symbol |
company ticker exchange | String | Exchange symbol |
company ultimateParentCompanyId | String | Ultimate parent company InsideView id |
company ultimateParentCompanyName | String | Ultimate parent company name |
company ultimateParentCompanyCoutnry | String | Ultimate parent company Country |
company websites | List | List of company's web site URL (String) |
company zip | String | Company address: zip code |
company companyFacebookProfile | String | Facebook profile of Company |
company companyTwitterProfile | String | Twitter profile of Company |
company companyBlogProfile | String | Blog Url of Company |
company companyLinkedInProfile | String | LinkedIn Profile of Company |
company businessStructure |
String |
The organizational structure of a company (globalParent, uncategorized, subsidiary, group, branch, independent) |
company companyStatusV2 |
String |
Company status (operating, non-Operating, acquired, liquidating, outOfBusiness, unassigned) |
company companyTypeV2 |
String |
Company type (public, private, government, organization, unknown) |
company siteCount |
String |
Number of company sites |
company siteLocationCount |
String |
Number of company sites that has site related information |
company siteTypes |
String |
Type of a site |
contact | Object | Contact demographic details |
contact age | String | Age |
contact contactId | Integer | Contact InsideView ID |
contact description | String | Contact biography |
contact education | Array | Array of contact's education details |
contact education degree | String | |
contact education major | String | |
contact education university | String | |
contact email | String | Contact email address |
contact facebookProfile | String | Contact Facebook profile URL |
contact firstName | String | Contact first name |
contact fullName | String | Contact full name |
contact imageUrl | String | Contact image URL |
contact lastName | String | Contact last name |
contact linkedInProfile | String | Contact LinkedIn profile URL |
contact phone | String | Contact phone number |
contact phoneType | String | Corporate and direct phone number |
contact salary | String | Salary |
contact salaryCurrency | String | Salary Currency |
contact peopleId | String | People Id |
contact jobLevelsV2 | List | List of a newer version of job levels for contact |
contact jobFunctionsV2 | List | List of a newer version of job functions for contact |
contact jobLevels | List | List of job levels for contact(String) |
contact jobFunctions | List | List of job functions for contact (String) |
contact active | Boolean | True or False to indicate employment status |
contact sources | List | List of sources for contact attributes (String) |
contact titles | List | List of contact's titles (String) |
contact twitterProfile | String | Contact Twitter profile URL |
confidenceScore | Number | Matching score. Min value: 0, max value: 100 |
Type: application/json (with a match)
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "The canonical enriched representation",
"properties": {
"company": {
"id": "company",
"type": "object",
"properties": {
"companyId": {
"id": "companyId",
"type": "integer"
},
"name": {
"id": "name",
"type": "string"
},
"phone": {
"id": "phone",
"type": "string"
},
"fax": {
"id": "fax",
"type": "string"
},
"revenue": {
"id": "revenue",
"type": "string"
},
"revenueCurrency": {
"id": "revenueCurrency",
"type": "string"
},
"companyStatus": {
"id": "companyStatus",
"type": "string"
},
"companyType": {
"id": "companyType",
"type": "string"
},
"employees": {
"id": "employees",
"type": "string"
},
"country": {
"id": "country",
"type": "string"
},
"state": {
"id": "state",
"type": "string"
},
"city": {
"id": "city",
"type": "string"
},
"street": {
"id": "street",
"type": "string"
},
"zip": {
"id": "zip",
"type": "string"
},
"equifaxId": {
"id": "equifaxId",
"type": "string"
},
"financialYearEnd": {
"id": "financialYearEnd",
"type": "string"
},
"industry": {
"id": "industry",
"type": "string"
},
"subIndustry": {
"id": "subIndustry",
"type": "string"
},
"industryCode": {
"id": "industryCode",
"type": "string"
},
"subIndustryCode": {
"id": "subIndustryCode",
"type": "string"
},
"sic": {
"id": "sic",
"type": "string"
},
"sicDescription": {
"id": "sicDescription",
"type": "string"
},
"naics": {
"id": "naics",
"type": "string"
},
"naicsDescription": {
"id": "naicsDescription",
"type": "string"
},
"parentCompanyId": {
"id": "parentCompanyId",
"type": "string"
},
"ultimateParentCompanyId": {
"id": "ultimateParentCompanyId",
"type": "string"
},
"parentCompanyName": {
"id": "parentCompanyName",
"type": "string"
},
"parentCompanyCountry": {
"id": "parentCompanyCountry",
"type": "string"
},
"ultimateParentCompanyName": {
"id": "ultimateParentCompanyName",
"type": "string"
},
"ultimateParentCompanyCountry": {
"id": "ultimateParentCompanyCountry",
"type": "string"
},
"tickers": {
"id": "tickers",
"type": "array",
"items": {
"id": "0",
"type": "object",
"properties": {
"tickerName": {
"id": "tickerName",
"type": "string"
},
"exchange": {
"id": "exchange",
"type": "string"
}
}
}
},
"britishSics": {
"id": "britishSics",
"type": "array",
"items": {
"id": "0",
"type": "object",
"properties": {
"britishSic": {
"id": "britishSic",
"type": "string"
},
"description": {
"id": "description",
"type": "string"
}
}
}
},
"businessStructure": {
"id": "businessStructure",
"type": "string"
},
"companyStatusV2": {
"id": "companyStatusV2",
"type": "string"
},
"companyTypeV2": {
"id": "companyTypeV2",
"type": "string"
},
"siteTypes": {
"id": "siteTypes",
"type": "array",
"items": {
"id": "0",
"type": "string"
}
},
"siteCount": {
"id": "siteCount",
"type": "integer"
},
"siteLocationCount": {
"id": "siteLocationCount",
"type": "integer"
},
"revenueRange": {
"id": "revenueRange",
"type": "string"
},
"employeeRange": {
"id": "employeeRange",
"type": "string"
},
"foundationDate": {
"id": "foundationDate",
"type": "string"
},
"latitude": {
"id": "latitude",
"type": "string"
},
"longitude": {
"id": "longitude",
"type": "string"
},
"companyTaxId": {
"id": "companyTaxId",
"type": "string"
},
"companyFacebookProfile": {
"id": "companyFacebookProfile",
"type": "string"
},
"companyTwitterProfile": {
"id": "companyTwitterProfile",
"type": "string"
},
"companyBlogProfile": {
"id": "companyBlogProfile",
"type": "string"
},
"companyLinkedInProfile": {
"id": "companyLinkedInProfile",
"type": "string"
},
"fortuneRanking": {
"id": "fortuneRanking",
"type": "string"
},
"mostRecentQuarter": {
"id": "mostRecentQuarter",
"type": "string"
},
"sources": {
"id": "sources",
"type": "array",
"items": [
{
"id": "0",
"type": "string"
}
]
},
"websites": {
"id": "websites",
"type": "array",
"items": {
"id": "0",
"type": "string"
}
}
}
},
"contact": {
"id": "contact",
"type": "object",
"properties": {
"contactId": {
"id": "contactId",
"type": "integer"
},
"email": {
"id": "email",
"type": "string"
},
"facebookProfile": {
"id": "facebookProfile",
"type": "string"
},
"firstName": {
"id": "firstName",
"type": "string"
},
"middleName": {
"id": "middleName",
"type": "string"
},
"lastName": {
"id": "lastName",
"type": "string"
},
"fullName": {
"id": "fullName",
"type": "string"
},
"linkedInProfile": {
"id": "linkedInProfile",
"type": "string"
},
"phone": {
"id": "phone",
"type": "string"
},
"twitterProfile": {
"id": "twitterProfile",
"type": "string"
},
"peopleId": {
"id": "peopleId",
"type": "string"
},
"jobLevels": {
"id": "jobLevels",
"type": "array",
"items": [
{
"id": "0",
"type": "string"
}
]
},
"jobFunctions": {
"id": "jobFunctions",
"type": "array",
"items": [
{
"id": "0",
"type": "string"
}
]
},
"jobLevelsV2": {
"id": "jobLevelsV2",
"type": "array",
"items": {
"id": "0",
"type": "object",
"properties": {
"id": {
"id": "id",
"type": "string"
},
"name": {
"id": "name",
"type": "string"
}
}
}
},
"jobFunctionsV2": {
"id": "jobFunctionsV2",
"type": "array",
"items": {
"id": "0",
"type": "object",
"properties": {
"id": {
"id": "id",
"type": "string"
},
"name": {
"id": "name",
"type": "string"
}
}
}
},
"active": {
"id": "active",
"type": "boolean"
},
"titles": {
"id": "titles",
"type": "array",
"items": [
{
"id": "0",
"type": "string"
}
]
},
"sources": {
"id": "sources",
"type": "array",
"items": [
{
"id": "0",
"type": "string"
}
]
},
"description": {
"id": "description",
"type": "string"
},
"educations": {
"id": "educations",
"type": "array",
"items": {
"id": "0",
"type": "object",
"properties": {
"degree": {
"id": "degree",
"type": "string"
},
"major": {
"id": "major",
"type": "string"
},
"university": {
"id": "university",
"type": "string"
}
}
}
},
"imageUrl": {
"id": "imageUrl",
"type": "string"
},
"age": {
"id": "age",
"type": "string"
},
"salary": {
"id": "salary",
"type": "string"
},
"salaryCurrency": {
"id": "salaryCurrency",
"type": "string"
}
}
},
"confidenceScore": {
"id": "confidenceScore",
"type": "string"
}
}
}
Example
{
"id": "1651051671130",
"company": {
"city": "Redmond",
"companyId": 726263,
"companyStatus": "Operating",
"companyType": "Public",
"country": "United States",
"employees": "6002",
"equifaxId": "049615062",
"financialYearEnd": "4",
"industry": "Computer Software",
"name": "Microsoft Corporation",
"phone": "+1 425 882 8080",
"revenue": "89960.0",
"sic": "7372",
"sicDescription": "Prepackaged Software",
"state": "WA",
"street": "One Microsoft Way, Redmond",
"subIndustry": "Computer Software",
"tickers": [
{
"tickerName": "GOOG",
"exchange": "NASD"
}
],
"zip": "98052-6399",
"mostRecentQuarter": "Jun, 2017",
"revenueCurrency": "USD",
"industryCode": "7",
"subIndustryCode": "7",
"britishSics": [
{
"britishSic": "46510",
"description": "Wholesale of computers, computer peripheral equipment and software"
},
{
"britishSic": "58210",
"description": "Publishing of computer games"
},
{
"britishSic": "62011",
"description": "Ready-made interactive leisure and entertainment software development"
},
{
"britishSic": "58290",
"description": "Other software publishing"
}
],
"fortuneRanking": "28",
"foundationDate": "1975",
"companyTaxId": "911144442",
"companyFacebookProfile": "https://www.facebook.com/118644529988713",
"companyTwitterProfile": "https://twitter.com/Microsoft",
"companyBlogProfile": "108761330653186",
"companyLinkedInProfile": "https://www.linkedin.com/in/108761330653186",
"siteCount": 288,
"siteLocationCount": 82,
"businessStructure": "globalParent",
"companyTypeV2": "Public",
"companyStatusV2": "Operating",
"siteTypes": [
"Uncategorized"
],
"websites": [
"https://www.microsoft.com/en-us/"
],
"sources": [
"User Generated",
"Web References",
"Reuters",
"InsideView",
"Community",
"Equifax"
]
},
"confidenceScore": "50.18248"
}
Type: application/xml (with a match)
Schema
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="education" type="educationDTO" /> <xs:complexType name="educationDTO"> <xs:sequence> <xs:element name="degree" type="xs:string" minOccurs="0" /> <xs:element name="major" type="xs:string" minOccurs="0" /> <xs:element name="university" type="xs:string" minOccurs="0" /> </xs:sequence> </xs:complexType> <xs:complexType name="jobLevelsV2andjobFunctionsV2DTO"> <xs:sequence> <xs:element name="id" type="xs:string" minOccurs="1" maxOccurs="1"/> <xs:element name="name" type="xs:string" minOccurs="1" maxOccurs="1"/> </xs:sequence> </xs:complexType> <xs:element name="enrichedLead"> <xs:complexType> <xs:sequence> <xs:element name="company"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="city" /> <xs:element type="xs:int" name="companyId" /> <xs:element type="xs:string" name="companyStatus" /> <xs:element type="xs:string" name="companyType" /> <xs:element type="xs:string" name="country" /> <xs:element type="xs:string" name="employees" /> <xs:element type="xs:string" name="equifaxId" /> <xs:element type="xs:string" name="fax" /> <xs:element type="xs:string" name="financialYearEnd" /> <xs:element type="xs:string" name="industry" /> <xs:element type="xs:string" name="naics" /> <xs:element type="xs:string" name="naicsDescription" /> <xs:element type="xs:string" name="name" /> <xs:element type="xs:string" name="parentCompanyId" /> <xs:element type="xs:string" name="phone" /> <xs:element type="xs:string" name="revenue" /> <xs:element type="xs:string" name="sic" /> <xs:element type="xs:string" name="sicDescription" /> <xs:element type="xs:string" name="state" /> <xs:element type="xs:string" name="street" /> <xs:element type="xs:string" name="subIndustry" /> <xs:element name="tickers"> <xs:complexType> <xs:sequence> <xs:element name="ticker"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="exchange" /> <xs:element type="xs:string" name="tickerName" /> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:string" name="ultimateParentCompanyId" /> <xs:element name="websites"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="website" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:string" name="zip" /> <xs:element type="xs:string" name="mostRecentQuarter" /> <xs:element name="sources"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="source" maxOccurs="unbounded" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:string" name="revenueCurrency" /> <xs:element type="xs:string" name="industryCode" /> <xs:element type="xs:string" name="latitude" /> <xs:element type="xs:string" name="longitude" /> <xs:element type="xs:string" name="subIndustryCode" /> <xs:element name="britishSics"> <xs:complexType> <xs:sequence> <xs:element name="britishSicDetails"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="britishSic" /> <xs:element type="xs:string" name="description" /> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="siteTypes"> <xs:complexType> <xs:sequence> <xs:element name="siteType" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="companyStatusV2" type="xs:string"/> <xs:element name="companyTypeV2" type="xs:string"/> <xs:element name="businessStructure" type="xs:string"/> <xs:element name="siteCount" type="xs:int"/> <xs:element name="siteLocationCount" type="xs:int"/> <xs:element type="xs:string" name="companyBlogProfile" /> <xs:element type="xs:string" name="companyFacebookProfile" /> <xs:element type="xs:string" name="companyTwitterProfile" /> <xs:element type="xs:string" name="companyLinkedInProfile" /> <xs:element type="xs:string" name="fortuneRanking" /> <xs:element type="xs:string" name="fortuneRanking" /> <xs:element type="xs:string" name="parentCompanyName" /> <xs:element type="xs:string" name="parentCompanyCountry" /> <xs:element type="xs:string" name="ultimateParentCompanyName" /> <xs:element type="xs:string" name="ultimateParentCompanyCountry" /> <xs:element type="xs:string" name="revenueRange" /> <xs:element type="xs:string" name="employeeRange" /> <xs:element type="xs:string" name="foundationDate" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:float" name="confidenceScore" /> <xs:element name="contact"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="contactId" /> <xs:element type="xs:string" name="email" /> <xs:element type="xs:string" name="facebookProfile" /> <xs:element type="xs:string" name="firstName" /> <xs:element type="xs:string" name="middleName" /> <xs:element type="xs:string" name="lastName" /> <xs:element type="xs:string" name="fullName" /> <xs:element type="xs:string" name="linkedInProfile" /> <xs:element type="xs:string" name="phone" /> <xs:element name="titles"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="title" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:string" name="twitterProfile" /> <xs:element name="sources"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="source" maxOccurs="unbounded" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="jobLevels"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="jobLevel" maxOccurs="unbounded" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="jobFunctions"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="jobFunction" maxOccurs="unbounded" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="jobLevelsV2" minOccurs="0"> <xs:complexType> <xs:sequence> <xs:element name="jobLevelV2" type="jobLevelsV2andjobFunctionsV2DTO" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="jobFunctionsV2" minOccurs="0"> <xs:complexType> <xs:sequence> <xs:element name="jobFunctionV2" type="jobLevelsV2andjobFunctionsV2DTO" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:boolean" name="active" /> <xs:element type="xs:string" name="description" /> <xs:element name="educations" minOccurs="0"> <xs:complexType> <xs:sequence> <xs:element ref="education" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element type="xs:string" name="imageUrl" /> <xs:element type="xs:string" name="age" /> <xs:element type="xs:string" name="salary" /> <xs:element type="xs:string" name="salaryCurrency" /> <xs:element type="xs:string" name="peopleId" /> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
Example
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<enrichedLead>
<company>
<city>Redmond</city>
<companyId>726263</companyId>
<companyStatus>Operating</companyStatus>
<companyType>Public</companyType>
<country>United States</country>
<employees>6002</employees>
<equifaxId>049615062</equifaxId>
<financialYearEnd>4</financialYearEnd>
<industry>Computer Software</industry>
<name>Microsoft Corporation</name>
<phone>+1 425 882 8080</phone>
<revenue>89960.0</revenue>
<sic>7372</sic>
<sicDescription>Prepackaged Software</sicDescription>
<state>WA</state>
<street>One Microsoft Way, Redmond</street>
<subIndustry>Computer Software</subIndustry>
<tickers>
<ticker>
<exchange>NASD</exchange>
<tickerName>GOOG</tickerName>
</ticker>
</tickers>
<websites>
<website>https://www.microsoft.com/en-us/</website>
</websites>
<zip>98052-6399</zip>
<sources>
<source>User Generated</source>
<source>Web References</source>
<source>Reuters</source>
<source>InsideView</source>
<source>Community</source>
<source>Equifax</source>
</sources>
<britishSics>
<britishSicDetails>
<britishSic>46510</britishSic>
<description>Wholesale of computers, computer peripheral equipment and software</description>
</britishSicDetails>
<britishSicDetails>
<britishSic>58210</britishSic>
<description>Publishing of computer games</description>
</britishSicDetails>
<britishSicDetails>
<britishSic>62011</britishSic>
<description>Ready-made interactive leisure and entertainment software development</description>
</britishSicDetails>
<britishSicDetails>
<britishSic>58290</britishSic>
<description>Other software publishing</description>
</britishSicDetails>
</britishSics>
<siteTypes>
<siteType>Uncategorized</siteType>
</siteTypes>
<businessStructure>globalParent</businessStructure>
<companyBlogProfile>108761330653186</companyBlogProfile>
<companyFacebookProfile>https://www.facebook.com/118644529988713</companyFacebookProfile>
<companyLinkedInProfile>https://www.linkedin.com/in/108761330653186</companyLinkedInProfile>
<companyStatusV2>Operating</companyStatusV2>
<companyTaxId>911144442</companyTaxId>
<companyTwitterProfile>https://twitter.com/Microsoft</companyTwitterProfile>
<companyTypeV2>Public</companyTypeV2>
<fortuneRanking>28</fortuneRanking>
<foundationDate>1975</foundationDate>
<industryCode>7</industryCode>
<mostRecentQuarter>Jun, 2017</mostRecentQuarter>
<revenueCurrency>USD</revenueCurrency>
<siteCount>288</siteCount>
<siteLocationCount>82</siteLocationCount>
<subIndustryCode>7</subIndustryCode>
</company>
<confidenceScore>50.18248</confidenceScore>
<id>1651051687956</id>
</enrichedLead>
application/json Example (without a match)
{}
application/xml Example (without a match)
<?xml version="1.0" encoding="UTF-8"?> <enrichedLead/>
HTTP 400
Invalid query parameter(s).
HTTP 401
Unauthorized Error - Cannot use API's without setting a valid accessToken in header.
HTTP 405
Method Not Allowed - Your are not allowed to access this API.
HTTP 429
Request is throttled.