6sense logo

Getting Started

In addition to getting insights from the dashboard, you can now use the 6sense API to find and enrich leads. Our API is still under active development, so if you have any suggestions, please let us know by sending an email to [email protected].

Here’s what you need to know about the 6sense API.

Authentication

6sense uses API keys to authenticate and allow access to its users. An API key is a token that a client provides when making API calls.

The API key is expected to be included as a request header.

If the API token’s value is incorrect or unrecognized, you will receive a 403 Forbidden error message.

Errors

Code Name Description
200 OK Success
400 Bad Request The action could not be processed
403 Forbidden The request could not be authenticated
429 Limit Exceeded The API call limit has been exceeded
429 Too Many Requests Exception The burst limit has been exceeded

Rate Limits

Each API token has a rate limit of 10 calls/sec and 10,000 calls/day. Rate limit gets refreshed at 12am (midnight) GMT

Each API token has a burst limit of 10 concurrent calls per second

API Credits Check

This endpoint allows you to retrieve the total API credits allocated and consumed for your account.

                            
var axios  = require( 'axios');

var config = {'method': 'get',
    'url': 'https://apiv2.slintel.com/v2.0/api-credits',
    'headers': {
        'x-api-key': 'YOUR API KEY'
    }
};
 
axios(config)
.then(function (response) {
    console.log(JSON.stringify(response.data));
})
.catch( function (error){
    console.log(error);
});
                            
                        
                            
var settings = {
    "url": "https://apiv2.slintel.com/v2.0/api-credits",
    "method": "GET",
    "timeout": 0,
    "headers": {
        "x-api-key": "YOUR API KEY"
    },
};
 
$.ajax(settings).done(function (response) {
    console.log(response);
});
                            
import requests

url = "https://apiv2.slintel.com/v2.0/api-credits"

payload  = {}
headers = {
    'x-api-key': 'YOUR API KEY'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text)
{
    "available_credits": 10,
    "consumed_credits": 90,
}

                        

Enrich Company

This endpoint enriches company insights based on the value in the company name and/or company domain fields.

The company enrichment endpoint consumes credit for it's usage - one credit is charged for every successfully response returned.

The company enrichment endpoint also charges credits if you pass the same information multiples times.

Parameters
company_name
name of the company
company_website
domain of the company

Returns a matched company from 6sense database.

var request = require('request');
                         
var options = {'method': 'GET',
    'url': 'https://apiv2.slintel.com/v2.0/company/enrich?company_website=aliaxis.com',
    'headers': {
    'x-api-key': 'YOUR API KEY'
    }
};
 
request(options, function (error, response) { 
    if (error) throw new Error(error);
    console.log(response.body);
});
var settings = {
                         
    "url": "https://apiv2.slintel.com/v2.0/company/enrich?company_website=aliaxis.com",
    "method": "GET",
    "timeout": 0,
    "headers": {
    "x-api-key": "YOUR API KEY"
     },
      
};
 
$.ajax(settings).done(function (response) {
    console.log(response);
});
import requests

url = "https://apiv2.slintel.com/v2.0/company/enrich?company_website=aliaxis.com"

payload  = {}
headers = {
    'x-api-key': 'YOUR API KEY'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
{

    "data":{
    
    "id":"5c3b016dd55ae49f1b77d266",
    
    "technologies":[
        {
            "technology":"Google Ads",
            "sub_category":"Search Marketing",
            "last_detected":1608777889,
            "confidence_score":55,
            "sources":[
            "Digital Footprint"
            ],
            "category":"Marketing"
        },
        {
            "technology":"Slack",
            "sub_category":"Instant Messaging & Chat",
            "last_detected":1613592005,
            "confidence_score":75,
            "sources":[
            "Digital Footprint"
            ],
            "category":"Collaboration"
        }
    ],
    
    "company_funding_range":"1-10m",
    
    "company_website":"slintel.com",
    
    "company_country":"United States",
    
    "company_products_services":[
    
    "Information and Communications Technology (ICT)",
    
    "Information Technology",
    
    "Marketing Automation",
    
    "Sales Automation"
    ],
    
    "company_address":"4515 Carlyle Ct,Santa Clara, California, United States,95054",
    "company_linkedin_url":"https://www.linkedin.com/company/6sense/",
    
    "industry":"Computer Software",
     
    "company_state":"California",
     
    "company_sector":"Technology",
    
    "company_name":"6sense",
    
    "company_twitter_url":"https://www.facebook.com/6senseinc/6senseInc",
    
    "company_city":"Santa Clara",
    
    "company_phone_number":"214-400-7300",
    
    "company_facebook_url":"https://www.facebook.com/6senseinc-1070643269715139/",
     
    "zip_code":"95054",
     
    "company_homepage_url":"https://www.slintel.com/",
     
    "company_size":"11-50",
     
    "last_funded_on":"Last 6 months"
     
    }
     
}

Search Leads

This endpoint allows you to search for leads in the 6sense Database.

Parameters
titles
titles (eg. cxo, manager, vp)
company_websites
domain of the company
location
location of leads
page
page number to extract the records

This call will return a maximum of 50 leads and users can search upto 200 pages.

var request = require('request');
 
var options = {
    'method': 'POST',
    'url': 'https://apiv2.slintel.com/v2.0/lead/search',
    'headers': {
        'x-api-key': 'YOUR API KEY',
        'Content-Type': 'application/json'
    },
     
    body: JSON.stringify({"payload":{"titles":["cxo","vp"],"company_websites":["amazon.com"],"location":["california","united states"]},"page":1})

};
 
request(options, function (error, response) { 
    if (error) throw new Error(error);
        console.log(response.body);
});
var settings = {
                        
    "url": "https://apiv2.slintel.com/v2.0/lead/search",        
    "method": "POST",
    "timeout": 0,
    "headers": {
    "x-api-key": "YOUR API KEY",
    "Content-Type": "application/json"
     },
     "data": JSON.stringify({"payload":{"titles":["cxo","vp"],"company_websites":["amazon.com"],"location":["california","united states"]},"page":1}),

};

$.ajax(settings).done(function (response) {
    console.log(response);
});
import requests

url = "https://apiv2.slintel.com/v2.0/lead/search"

payload = "{\"payload\":{\"titles\":[\"cxo\",\"vp\"],\"company_websites\":[\"amazon.com\"],\"location\":[\"california\",\"united states\"]},\"page\":1}"
headers = {
    'x-api-key': 'YOUR API KEY',
    'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
{
    "payload":{

        "titles":[

            "cxo",

            "vp"

            ],

        "company_websites":[

                "amazon.com"

        ],

        "location":[

            "california",

            "united states"

        ]

    },

    "page":1

}
                        
{

    "data":[

        {

            "id":"607f5251efe2c7542c97661f",
            "company_id":"5c3b000ad55ae49f1b75f1a3",
            "email_confidence":"High",

            "lead_title":"Vice President Ad Sales And Program Management",
            "company_name":"Amazon",
            "company_website":"amazon.com",

            "name":"Steve Sarner",
            "linkedin_url":"http://www.linkedin.com/in/stevesarner",
            "email":"s*****[email protected]"
        }
    ],

    "total":442

}

Enrich Lead on email

This endpoint enriches a lead’s information based on the value found in the email field.

The lead enrichment endpoint consumes credits for its usage - one credit is charged for every successful response returned.

The lead enrichment endpoint also charges credits if you pass the same information multiple times.

var request = require('request');

var options = {

    'method': 'GET',
    'url': 'https://apiv2.slintel.com/v2.0/lead/[email protected]',
    'headers': {
        'x-api-key': 'YOUR API KEY'
    }

};

request(options, function (error, response) { 
    if (error) throw new Error(error);
        console.log(response.body);
});
var settings = {

    "url": "https://apiv2.slintel.com/v2.0/lead/[email protected]",
    "method": "GET",
    "timeout": 0,
    "headers": {
    "x-api-key": "YOUR API KEY"
    },

};

$.ajax(settings).done(function (response) {
    console.log(response);
});
import requests

url = "https://apiv2.slintel.com/v2.0/lead/[email protected]"

payload  = {}

headers = {
    'x-api-key': 'YOUR API KEY'    
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
{

"data":{
                            "id":"5dc164616d4235090c39736b",
                            "continent":"North America",
                            "country":"United States",
                            "education":[
                            {
                                "end_date":2008,
                                "school_location":"Indore, Madhya Pradesh, India",
                                "school_website":"iimidr.ac.in",
                                "school_name":"Indian Institute Of Management Indore",
                                "degrees":[
                                    "Master Of Business Administration",
                                    "Masters"
                                ],
                                "start_date":2006
                            },
                            {
                                "end_date":2006,
                                "school_location":"Kharagpur, West Bengal, India",
                                "school_website":"iitkgp.ac.in",
                                "school_name":"Indian Institute Of Technology Kharagpur",
                                "degrees":[
                                    "Bachelors"
                                ],
                                "start_date":2002
                            }
                            ],
                            "decision_making_power":"High",
                            "city":"San Francisco",
                            "company_website":"slintel.com",
                            "technologies":[
                            {
                                "technology":"Google Ads",
                                "sub_category":"Search Marketing",
                                "last_detected":1608777889,
                                "confidence_score":55,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Marketing"
                            },
                            {
                                "technology":"Slack",
                                "sub_category":"Instant Messaging & Chat",
                                "last_detected":1613592005,
                                "confidence_score":75,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Collaboration"
                            }
                            ],
                            "company_linkedin_url":"https://www.linkedin.com/company/6sense/",
                            "skills":[
                            "Business Strategy",
                            "Portfolio Management",
                            "Financial Modeling",
                            "Management",
                            "Banking",
                            "Consulting",
                            "Business Development",
                            "Requirements Analysis",
                            "Business Analytics",
                            "Investments",
                            "Business Analysis",
                            "Team Management",
                            "Pre Sales",
                            "Business Intelligence",
                            "Strategy",
                            "Financial Services",
                            "Sales",
                            "Management Consulting"
                            ],
                            "company_state":"California",
                            "function":"Ceo/founder/co-founder",
                            "company_city":"Santa Clara",
                            "state":"California",
                            "email":"[email protected]",
                            "divison":"General",
                            "company_id":"5c3b016dd55ae49f1b77d266",
                            "lead_title":"Founder",
                            "company_country":"United States",
                            "company_products_services":[
                            "Information and Communications Technology (ICT)",
                            "Information Technology",
                            "Marketing Automation",
                            "Sales Automation"
                            ],
                            "company_phone_number":"214-400-7300",
                            "industry":"Computer Software",
                            "company_sector":"Technology",
                            "company_name":"6sense",
                            "company_twitter_url":"https://www.facebook.com/6senseinc/6senseInc",
                            "name":"Deepak Anchala",
                            "company_facebook_url":"https://www.facebook.com/6senseinc-1070643269715139/",
                            "linkedin_url":"http://www.linkedin.com/in/deepak-anchala-0043707",
                            "company_size":"11-50",
                            "last_funded_on":1576108800
                            }
                            }
                            

Enrich Lead on LinkedIn Url

This endpoint enriches a lead’s information based on the value found in the LinkedIn URL field.

The lead enrichment endpoint consumes credits for its usage - one credit is charged for every successful response returned.

The enrich endpoint also charges credits if you pass the same information multiple times.

var request = require('request');

var options = {

    'method': 'GET',
    'url': 'https://apiv2.slintel.com/v2.0/lead/enrich?linkedin_url=http://www.linkedin.com/in/deepak-anchala-0043707',
    'headers': {
        'x-api-key': 'YOUR API KEY'
    }

};

request(options, function (error, response) { 
    if (error) throw new Error(error);
    console.log(response.body);
});
var settings = {

    "url": "https://apiv2.slintel.com/v2.0/lead/enrich?linkedin_url=http://www.linkedin.com/in/deepak-anchala-0043707",
    "method": "GET",
    "timeout": 0,
    "headers": {
        "x-api-key": "YOUR API KEY"
    },

};

$.ajax(settings).done(function (response) {
    console.log(response);
});
import requests

url = "https://apiv2.slintel.com/v2.0/lead/enrich?linkedin_url=http://www.linkedin.com/in/deepak-anchala-0043707"

payload  = {}

headers = {
    'x-api-key': 'YOUR API KEY'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
                            
{

"data":{
                            "id":"5dc164616d4235090c39736b",
                            "continent":"North America",
                            "country":"United States",
                            "education":[
                            {
                                "end_date":2008,
                                "school_location":"Indore, Madhya Pradesh, India",
                                "school_website":"iimidr.ac.in",
                                "school_name":"Indian Institute Of Management Indore",
                                "degrees":[
                                    "Master Of Business Administration",
                                    "Masters"
                                ],
                                "start_date":2006
                            },
                            {
                                "end_date":2006,
                                "school_location":"Kharagpur, West Bengal, India",
                                "school_website":"iitkgp.ac.in",
                                "school_name":"Indian Institute Of Technology Kharagpur",
                                "degrees":[
                                    "Bachelors"
                                ],
                                "start_date":2002
                            }
                            ],
                            "decision_making_power":"High",
                            "city":"San Francisco",
                            "company_website":"slintel.com",
                            "technologies":[
                            {
                                "technology":"Google Ads",
                                "sub_category":"Search Marketing",
                                "last_detected":1608777889,
                                "confidence_score":55,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Marketing"
                            },
                            {
                                "technology":"Slack",
                                "sub_category":"Instant Messaging & Chat",
                                "last_detected":1613592005,
                                "confidence_score":75,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Collaboration"
                            }
                            ],
                            "company_linkedin_url":"https://www.linkedin.com/company/6sense/",
                            "skills":[
                            "Business Strategy",
                            "Portfolio Management",
                            "Financial Modeling",
                            "Management",
                            "Banking",
                            "Consulting",
                            "Business Development",
                            "Requirements Analysis",
                            "Business Analytics",
                            "Investments",
                            "Business Analysis",
                            "Team Management",
                            "Pre Sales",
                            "Business Intelligence",
                            "Strategy",
                            "Financial Services",
                            "Sales",
                            "Management Consulting"
                            ],
                            "company_state":"California",
                            "function":"Ceo/founder/co-founder",
                            "company_city":"Santa Clara",
                            "state":"California",
                            "email":"[email protected]",
                            "divison":"General",
                            "company_id":"5c3b016dd55ae49f1b77d266",
                            "lead_title":"Founder",
                            "company_country":"United States",
                            "company_products_services":[
                            "Information and Communications Technology (ICT)",
                            "Information Technology",
                            "Marketing Automation",
                            "Sales Automation"
                            ],
                            "company_phone_number":"214-400-7300",
                            "industry":"Computer Software",
                            "company_sector":"Technology",
                            "company_name":"6sense",
                            "company_twitter_url":"https://www.facebook.com/6senseinc/6senseInc",
                            "name":"Deepak Anchala",
                            "company_facebook_url":"https://www.facebook.com/6senseinc-1070643269715139/",
                            "linkedin_url":"http://www.linkedin.com/in/deepak-anchala-0043707",
                            "company_size":"11-50",
                            "last_funded_on":1576108800
                            }
}
                           

Enrich Lead on Id

This endpoint enriches a lead’s information on Id.

The lead enrichment endpoint consumes credits for its usage - one credit is charged for every successful response returned.

The enrich endpoint also charges credits if you pass in the same information multiple times.

var request = require('request');

var options = {
    'method': 'GET',
    'url': 'https://apiv2.slintel.com/v2.0/lead/enrich?lead_id=5dc164616d4235090c39736b',
    'headers': {
    'x-api-key': 'YOUR API KEY'
    }

};

request(options, function (error, response) { 
    if (error) throw new Error(error);
        console.log(response.body);
});
var settings = {

    "url": "https://apiv2.slintel.com/v2.0/lead/enrich?lead_id=5dc164616d4235090c39736b",
    "method": "GET",
    "timeout": 0,
    "headers": {
        "x-api-key": "YOUR API KEY"
    },

};

$.ajax(settings).done(function (response) {
    console.log(response);
});
import requests

url = "https://apiv2.slintel.com/v2.0/lead/enrich?lead_id=5dc164616d4235090c39736b"

payload  = {}

headers = {
    'x-api-key': 'YOUR API KEY'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
{

"data":{
                            "id":"5dc164616d4235090c39736b",
                            "continent":"North America",
                            "country":"United States",
                            "education":[
                            {
                                "end_date":2008,
                                "school_location":"Indore, Madhya Pradesh, India",
                                "school_website":"iimidr.ac.in",
                                "school_name":"Indian Institute Of Management Indore",
                                "degrees":[
                                    "Master Of Business Administration",
                                    "Masters"
                                ],
                                "start_date":2006
                            },
                            {
                                "end_date":2006,
                                "school_location":"Kharagpur, West Bengal, India",
                                "school_website":"iitkgp.ac.in",
                                "school_name":"Indian Institute Of Technology Kharagpur",
                                "degrees":[
                                    "Bachelors"
                                ],
                                "start_date":2002
                            }
                            ],
                            "decision_making_power":"High",
                            "city":"San Francisco",
                            "company_website":"slintel.com",
                            "technologies":[
                            {
                                "technology":"Google Ads",
                                "sub_category":"Search Marketing",
                                "last_detected":1608777889,
                                "confidence_score":55,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Marketing"
                            },
                            {
                                "technology":"Slack",
                                "sub_category":"Instant Messaging & Chat",
                                "last_detected":1613592005,
                                "confidence_score":75,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Collaboration"
                            }
                            ],
                            "company_linkedin_url":"https://www.linkedin.com/company/6sense/",
                            "skills":[
                            "Business Strategy",
                            "Portfolio Management",
                            "Financial Modeling",
                            "Management",
                            "Banking",
                            "Consulting",
                            "Business Development",
                            "Requirements Analysis",
                            "Business Analytics",
                            "Investments",
                            "Business Analysis",
                            "Team Management",
                            "Pre Sales",
                            "Business Intelligence",
                            "Strategy",
                            "Financial Services",
                            "Sales",
                            "Management Consulting"
                            ],
                            "company_state":"California",
                            "function":"Ceo/founder/co-founder",
                            "company_city":"Santa Clara",
                            "state":"California",
                            "email":"[email protected]",
                            "divison":"General",
                            "company_id":"5c3b016dd55ae49f1b77d266",
                            "lead_title":"Founder",
                            "company_country":"United States",
                            "company_products_services":[
                            "Information and Communications Technology (ICT)",
                            "Information Technology",
                            "Marketing Automation",
                            "Sales Automation"
                            ],
                            "company_phone_number":"214-400-7300",
                            "industry":"Computer Software",
                            "company_sector":"Technology",
                            "company_name":"6sense",
                            "company_twitter_url":"https://www.facebook.com/6senseinc/6senseInc",
                            "name":"Deepak Anchala",
                            "company_facebook_url":"https://www.facebook.com/6senseinc-1070643269715139/",
                            "linkedin_url":"http://www.linkedin.com/in/deepak-anchala-0043707",
                            "company_size":"11-50",
                            "last_funded_on":1576108800
                            }
}
                           

Enrich Lead on Name

This endpoint enriches a lead’s information based on the value found in the Name and Company field.

Parameters
name
full name of the lead
company_website
domain of the company
company_name
name of the company
location
location of the lead (optional)

The lead enrichment endpoint consumes credits for its usage - one credit is charged for every successful response returned.

The enrich endpoint also charges credits if you pass the same information multiple times.

var request = require('request');

var options = {
    'method': 'GET',
    'url': 'https://apiv2.slintel.com/v2.0/lead/enrich?name=Deepak Anchala&company_name=6sense&location=California&location=United States',
        'headers': {
        'x-api-key': 'f7c59c6b-83de-4e80-8011-0fbd6846c695'
    }
};

request(options, function (error, response) { 
    if (error) throw new Error(error);
    console.log(response.body);
});
                            
var settings = {

    "url": "https://apiv2.slintel.com/v2.0/lead/enrich?name=Deepak Anchala&company_name=6sense&location=California&location=United States",
    "method": "GET",
    "timeout": 0,
    "headers": {
        "x-api-key": "f7c59c6b-83de-4e80-8011-0fbd6846c695"
    },

};

$.ajax(settings).done(function (response) {
    console.log(response);
});
                                
import requests

url = "https://apiv2.slintel.com/v2.0/lead/enrich?name=Deepak Anchala&company_name=6sense&location=California&location=United States"

payload  = {}

headers = {
    'x-api-key': 'f7c59c6b-83de-4e80-8011-0fbd6846c695'
}

response = requests.request("GET", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
                            
{
"data":{
                            "id":"5dc164616d4235090c39736b",
                            "continent":"North America",
                            "country":"United States",
                            "education":[
                            {
                                "end_date":2008,
                                "school_location":"Indore, Madhya Pradesh, India",
                                "school_website":"iimidr.ac.in",
                                "school_name":"Indian Institute Of Management Indore",
                                "degrees":[
                                    "Master Of Business Administration",
                                    "Masters"
                                ],
                                "start_date":2006
                            },
                            {
                                "end_date":2006,
                                "school_location":"Kharagpur, West Bengal, India",
                                "school_website":"iitkgp.ac.in",
                                "school_name":"Indian Institute Of Technology Kharagpur",
                                "degrees":[
                                    "Bachelors"
                                ],
                                "start_date":2002
                            }
                            ],
                            "decision_making_power":"High",
                            "city":"San Francisco",
                            "company_website":"slintel.com",
                            "technologies":[
                            {
                                "technology":"Google Ads",
                                "sub_category":"Search Marketing",
                                "last_detected":1608777889,
                                "confidence_score":55,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Marketing"
                            },
                            {
                                "technology":"Slack",
                                "sub_category":"Instant Messaging & Chat",
                                "last_detected":1613592005,
                                "confidence_score":75,
                                "sources":[
                                "Digital Footprint"
                                ],
                                "category":"Collaboration"
                            }
                            ],
                            "company_linkedin_url":"https://www.linkedin.com/company/6sense/",
                            "skills":[
                            "Business Strategy",
                            "Portfolio Management",
                            "Financial Modeling",
                            "Management",
                            "Banking",
                            "Consulting",
                            "Business Development",
                            "Requirements Analysis",
                            "Business Analytics",
                            "Investments",
                            "Business Analysis",
                            "Team Management",
                            "Pre Sales",
                            "Business Intelligence",
                            "Strategy",
                            "Financial Services",
                            "Sales",
                            "Management Consulting"
                            ],
                            "company_state":"California",
                            "function":"Ceo/founder/co-founder",
                            "company_city":"Santa Clara",
                            "state":"California",
                            "email":"[email protected]",
                            "divison":"General",
                            "company_id":"5c3b016dd55ae49f1b77d266",
                            "lead_title":"Founder",
                            "company_country":"United States",
                            "company_products_services":[
                            "Information and Communications Technology (ICT)",
                            "Information Technology",
                            "Marketing Automation",
                            "Sales Automation"
                            ],
                            "company_phone_number":"214-400-7300",
                            "industry":"Computer Software",
                            "company_sector":"Technology",
                            "company_name":"6sense",
                            "company_twitter_url":"https://www.facebook.com/6senseinc/6senseInc",
                            "name":"Deepak Anchala",
                            "company_facebook_url":"https://www.facebook.com/6senseinc-1070643269715139/",
                            "linkedin_url":"http://www.linkedin.com/in/deepak-anchala-0043707",
                            "company_size":"11-50",
                            "last_funded_on":1576108800
                            }
}