Sales Pointer
This API enables advanced lead discovery and filtering, replicating the core functionality of LinkedIn Sales Navigator.
cURL 'https://api.enrich.so/v1/api/sales-pointer' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_number": 1,
"page": 1,
"filters": [
{
"type": "POSTAL_CODE",
"values": [
{
"id": "101041448",
"text": "781104, Guwahati, Assam, India",
"selectionType": "INCLUDED"
}
],
"selectedSubFilter": 50
}
]
}'
const axios = require('axios');
const payload = {
account_number: 1,
page: 1,
filters: [
{
type: "POSTAL_CODE",
values: [
{
id: "101041448",
text: "781104, Guwahati, Assam, India",
selectionType: "INCLUDED"
}
],
selectedSubFilter: 50
}
]
};
axios.post('https://api.enrich.so/v1/api/sales-pointer', payload, {
headers: {
accept: 'application/json',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error.response ? error.response.data : error.message);
});
import requests
url = 'https://api.enrich.so/v1/api/sales-pointer'
payload = {
"account_number": 1,
"page": 1,
"filters": [
{
"type": "POSTAL_CODE",
"values": [
{
"id": "101041448",
"text": "781104, Guwahati, Assam, India",
"selectionType": "INCLUDED"
}
],
"selectedSubFilter": 50
}
]
}
headers = {
'accept': 'application/json',
'authorization': 'Bearer <token>',
'Content-Type': 'application/json'
}
response = requests.post(url, json=payload, headers=headers)
if response.status_code == 200:
print(response.json())
else:
print(f"Error: {response.status_code}, {response.text}")
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
String payload = "{\n" +
" \"account_number\": 1,\n" +
" \"page\": 1,\n" +
" \"filters\": [\n" +
" {\n" +
" \"type\": \"POSTAL_CODE\",\n" +
" \"values\": [\n" +
" {\n" +
" \"id\": \"101041448\",\n" +
" \"text\": \"781104, Guwahati, Assam, India\",\n" +
" \"selectionType\": \"INCLUDED\"\n" +
" }\n" +
" ],\n" +
" \"selectedSubFilter\": 50\n" +
" }\n" +
" ]\n" +
"}"
;
RequestBody body = RequestBody.create(mediaType, payload);
Request request = new Request.Builder()
.url("https://api.enrich.so/v1/api/sales-pointer")
.post(body)
.addHeader("accept", "application/json")
.addHeader("authorization", "Bearer <token>")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
require 'uri'
require 'net/http'
require 'json'
url = URI("https://api.enrich.so/v1/api/sales-pointer")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["accept"] = 'application/json'
request["authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
payload = {
account_number: 1,
page: 1,
filters: [
{
type: "POSTAL_CODE",
values: [
{
id: "101041448",
text: "781104, Guwahati, Assam, India",
selectionType: "INCLUDED"
}
],
selectedSubFilter: 50
}
]
}
request.body = payload.to_json
response = http.request(request)
if response.code == '200'
puts response.body
else
puts "Error: #{response.code}, #{response.body}"
end
<?php
$curl = curl_init();
$data = [
"account_number"=> 1,
"page": 1,
"filters"=> [
[
"type"=> "POSTAL_CODE",
"values"=> [
[
"id"=> "101041448",
"text"=> "781104, Guwahati, Assam, India",
"selectionType"=> "INCLUDED"
]
],
"selectedSubFilter"=> 50
]
]
];
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enrich.so/v1/api/sales-pointer",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode($data),
CURLOPT_HTTPHEADER => [
"accept: application/json",
"authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Example response
Status Code: 200 OK
{
"success": true,
"message": "Leads record found.",
"data": {
"data": [
{
"firstName": "Shubham",
"lastName": "Singh",
"fullName": "Shubham Singh",
"summary": "Energy Storage, Rechargeable Batteries, Supercapacitors, Fuel Cells, Nanotechnology Material Synthesis and Characterization, Composite Materials.",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Student Convener ",
"tenureAtPosition": {
"numYears": 1,
"numMonths": 2
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 1,
"numMonths": 2
},
"startedOn": {
"month": 3,
"year": 2024
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D4D03AQEPh6ETyuCjfg/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1677330883987?e=1751500800&v=beta&t=A_dglONAX8NrGpWXzDNfRtcPjkqC1QuMt_V0kkf3EpM",
"profileUrn": "ACwAACDxjrIBeCTCt2BOjjp11r7v3zP3_G5mJUM",
"navigationUrl": "https://www.linkedin.com/in/ACwAACDxjrIBeCTCt2BOjjp11r7v3zP3_G5mJUM",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Samiran",
"lastName": "Chakraborty",
"fullName": "Samiran Chakraborty",
"summary": "A versatile business professional with over 39+ years of experience in Operations & Maintenance, ISO-9001, ISO-14001, and OSHAS, Revenue Growth, Shutdown & Turnaround Execution, Business Development, Client Relationship Management, EPC & Project Management, P&L Management, and People Management.\n\n★ Skilled expert with a wide range of experience managing high-stakes projects in Indian refineries, including designing schedules, activities, and resource estimates.\n\n➤ WHERE CAN I ADD VALUE\n\n●\tExtremely effective in boosting the \"On-Stream\" factor and \"Capacity Utilization\" at production facilities via World-Class Asset Maintenance techniques with Extremely High Operational Availability.\n●\tProven track record in the design, procurement, installation, commissioning, and operation of all utility systems, including but not limited to air compressors, nitrogen compressors, fire water, drinking water, service water networks, instrument air systems, ground and elevated fuel-gas flare and acid gas flare systems, natural gas (NG) systems, evaporative cooling towers, an effluent treatment plant, a captive power system (with two frame-6 GE GTGs and tank farms with all hydrocarbon products ranging\n●\tSuccessful track record with Operation, Project, and Maintenance planning and execution; Asset Integrity and Reliability process adoption; Budget Estimations; Manpower Control; Work Planning and Costing; and Shutdowns/Turnarounds.\n●\tExtensive background serving as the head of various maintenance departments (mechanical, civil, electrical, instrumentation, and planning) across a variety of refineries, offsite/utility, and terminal units.\n●\tAbility to inspire others set an example, and drive results is essential for maintaining growth momentum, fostering future leaders, and assembling formidable teams.\n\n➤ KEY ACHIEVEMENTS\n\n●\tSmooth start-up and commissioning of the plants with no cost overruns, accidents, or incidents.\n●\tReduced downtime of production units due to maintenance to zero, and uptime of the maintenance department to over 97% without any lost-time incidents.\n●\tSkillfully planned and constructed 10 retail outlets and a prefabricated corporate facility in a record-setting six months! Successfully ensured that all maintenance-related issues were resolved, resulting in no customer complaints.\n\n✎ About Me\n\nI am a multi-faceted professional who can strategize, improvise, and enhance effectiveness in all project management domains. \n\n📧 Do reach me out at: csamiran2@gmail.com.",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Senior Project Manager, Head OGH R&M ",
"description": "●\tProven track record as a Project Manager overseeing the development, production, and installation of complex units such as HGU (licensor Halder-Topsoe), HCU (licensor CLG Lumus), Motor Spirit Unit (with NHDT, CRU, Isom under licensor Axens), CCU, DCU, etc.\n●\tLed the design, construction, commissioning, and stabilization of ISBL/OSBL, pipeline Pump houses, product and intermediate tanks, and other plant expansions such as CDU/VDU, CCR, HDT, SWS, ATU, WNS, Isom & MS block etc. The installation of all reactors (including the loading of catalysts), columns, vessels, piping, electrical and instrumentation cables, termination, impulse piping, instrument connection, loop checking, etc.\n●\tExperienced at preparing budgets, project controls, costs, schedules, and planning activities, as well as coordinating the input of other PMT tasks (engineering, construction, etc.) to guarantee the full scope of service is provided.\n●\tMaintains a centralized hub for all project cost, schedule, and planning updates; coordinates the creation of plans and associated financial actions; and communicates with shareholders.\n●\tEstablishing reliable working relationships with contractors through regular meetings, report reviews, and payment processing.\n●\tKeeping tabs on the Contractor's progress in terms of budgeting, scheduling, and planning; helped the project team secure the services they need to finish the job on time and within budget.\n●\tSkilled in leading Project workforce planning & resourcing and managing modifications to guarantee uniformly applied, fair decision-making criteria.\n●\tDedicated effort placed into minimizing and resolving contractual conflicts and helping the contractor deal with concerns with time, money, and the schedule.\n●\tThe project included the dismantling of the old underground substructures, the installation of a new technological structure, and the replacement of the 50-year-old CDU-I and VDU-I at IOCL-capacity Haldia's expansion.",
"tenureAtPosition": {
"numYears": 7,
"numMonths": 11
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 7,
"numMonths": 11
},
"startedOn": {
"month": 6,
"year": 2017
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D5603AQFnVrJnmdcfTw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1705615949716?e=1751500800&v=beta&t=Fy627ylD4xi6hWoc9KE8k1xXcys_YcPPMBZQi-JIs7o",
"profileUrn": "ACwAAALA-gkB_DqDUco4wnYH6S3aIw7VSUADHb0",
"navigationUrl": "https://www.linkedin.com/in/ACwAAALA-gkB_DqDUco4wnYH6S3aIw7VSUADHb0",
"openLink": true,
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Dilip Kumar",
"lastName": "Borah",
"fullName": "Dilip Kumar Borah",
"summary": "Chemical Engineer with rich experience in diverse industrial sectors like onshore oil exploration, refinery & petrochemicals, sugar refining, building materials (gypsum & vitrified tiles), agribusiness, new projects, supply chain management, electric mobility, healthcare innovations, smart parking solutions, bulk minerals like Gypsum, Talc, Quartz etc. Setting up large industrial projects - concept to commissioning. Initiated a mega project to set up world's first plant for Bamboo Crash Barrier along with Biochar in Assam - the Project based on local agri raw material (bamboo) to produce steel substitute product as well as biochar towards soil enrichment besides use of bamboo vinegar as green weedicide and fungicide",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Industrial Consultant",
"tenureAtPosition": {
"numMonths": 9
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numMonths": 9
},
"startedOn": {
"month": 8,
"year": 2024
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/C5103AQEIh87muSUo5A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1572617764039?e=1751500800&v=beta&t=wVHpN-GapU1brUUm8J-0YI-NoxqdQeTTVGR6X-GFRng",
"profileUrn": "ACwAAATFcAUBl6A6CUdvikULZF1bd3DbFlUuvZA",
"navigationUrl": "https://www.linkedin.com/in/ACwAAATFcAUBl6A6CUdvikULZF1bd3DbFlUuvZA",
"openLink": true,
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "JITENDRA",
"lastName": "SUWASIYA",
"fullName": "JITENDRA SUWASIYA",
"summary": "Jitendra Suwasiya is a seasoned physics faculty with over 8 years of teaching experience, having \nproduced top rankers in competitive exams like NEET and JEE. He served as Centre Head at \nCareer Point (Kota) Tezpur Centre for 2 years, where he efficiently managed both academic and \nnon-academic operations. Additionally, he was responsible for overseeing two School Integrated \nPrograms (SIP) at The Assam Valley School and Dimension Academy. For the past year, he has \nbeen working as a centre head of Helion Career Institute in Tezpur, with a second center in \nBiswanath Chariali. Alongside his role in education, Jitendra is also the COO of Roadlyft \nRideshare Private Ltd, a startup selected for Shark Tank India Season 4, Stage 2.",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Centre Head & Physics Faculty ",
"description": "As the Centre Head and Physics faculty member at Helion Career Institute, I am dedicated to empowering students in Tezpur, Assam, to excel in competitive exams like NEET and JEE. My passion lies in making complex concepts accessible and engaging, helping students build strong foundational knowledge in Physics. Through innovative teaching methods and a commitment to excellence, I aim to inspire and guide young minds towards academic and professional success.",
"tenureAtPosition": {
"numYears": 1,
"numMonths": 4
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 1,
"numMonths": 4
},
"startedOn": {
"month": 1,
"year": 2024
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D5603AQGRV2BMxhWbHg/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1708692080986?e=1751500800&v=beta&t=sr62wfk7vJBHZd3Z188oejDYrnovRzaDGjBMk6j1peg",
"profileUrn": "ACwAABbQjfIBKJ7u3lH-9gJ4LDpXTmPraYYrOsk",
"navigationUrl": "https://www.linkedin.com/in/ACwAABbQjfIBKJ7u3lH-9gJ4LDpXTmPraYYrOsk",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
}
{
"firstName": "Sandeep",
"lastName": "Yadav",
"fullName": "Sandeep Yadav",
"summary": "Currently working as a research chemist in sphaera pharma. Completed postgraduation from Indian institute of technology Guwahati. I have good knowledge of metal based reaction, handling air sensitive reaction, prepared library of small molecules, Worked on modification of drugs.",
"geoRegion": "North Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Research associate",
"tenureAtPosition": {
"numYears": 1,
"numMonths": 10
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 1,
"numMonths": 10
},
"startedOn": {
"month": 7,
"year": 2023
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/C4D03AQHYhKFgAN0L_w/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1638238506498?e=1751500800&v=beta&t=F7a6gX4krqQwfpj6MfXNoQ1HngNDNXQhprIONFZjZDU",
"profileUrn": "ACwAADRpj9QBIltHNBqODWplM-kMLgKTrWsjHsY",
"navigationUrl": "https://www.linkedin.com/in/ACwAADRpj9QBIltHNBqODWplM-kMLgKTrWsjHsY",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Aradhana",
"lastName": "Mishra",
"fullName": "Aradhana Mishra",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Research Associate",
"tenureAtPosition": {
"numMonths": 2
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numMonths": 2
},
"startedOn": {
"month": 3,
"year": 2025
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/C4E03AQErk1xM40BA7w/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1616433727322?e=1751500800&v=beta&t=U8at1I4Jkdg9MvCU9KKHcv950chGh9Qdy3mk9nYgFJU",
"profileUrn": "ACwAACFFbqIBqBrqdyOMSJzTpqAtQriciR7dtmE",
"navigationUrl": "https://www.linkedin.com/in/ACwAACFFbqIBqBrqdyOMSJzTpqAtQriciR7dtmE",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Minhaz",
"lastName": "Alam",
"fullName": "Minhaz Alam",
"summary": "As the founder and CEO of Infinityy Media, a 360-degree digital marketing agency, I help businesses of all sizes build their online presence and become brands that stand out. We combine creativity, data, and strategy to create innovative and impactful campaigns for our clients.\n\nMy team and I focus on customer experience and user engagement, creating an immersive brand experience that resonates with audiences and drives results. We have worked with clients across various sectors, such as e-commerce, education, healthcare, and entertainment. I am motivated by the challenge of transforming ideas into reality and empowering businesses to grow and succeed. Don't be just a business. Be a BRAND!",
"geoRegion": "India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Chief Executive Officer",
"description": "Infinityy Media is a 360 digital marketing agency that helps you build your online presence. Don't be just another business, be a BRAND! #WeCurateBrands",
"tenureAtPosition": {
"numYears": 4,
"numMonths": 8
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 4,
"numMonths": 8
},
"startedOn": {
"month": 9,
"year": 2020
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D4D03AQH4GeAeHCNObQ/profile-displayphoto-shrink_100_100/B4DZXMsMzlHIAk-/0/1742895894649?e=1751500800&v=beta&t=JhX638bmmoN8GsxddOn-yb0Dd1fc9Zw-pOfrhiTWSEY",
"profileUrn": "ACwAADPx0e4BGZ-Pz3ByYr7t-dMFdxB991EnsDg",
"navigationUrl": "https://www.linkedin.com/in/ACwAADPx0e4BGZ-Pz3ByYr7t-dMFdxB991EnsDg",
"openLink": true,
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Ricky",
"lastName": "Das",
"fullName": "Ricky Das",
"summary": "Looking over the execution of production planning by following sop's and handling the team of technicians,operator and workers to fulfill the compliance",
"geoRegion": "Dispur, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Assistant manager Technical",
"tenureAtPosition": {
"numMonths": 3
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numMonths": 3
},
"startedOn": {
"month": 2,
"year": 2025
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D4D03AQEdqHyce6TamQ/profile-displayphoto-shrink_200_200/B4DZZXNl93G0AY-/0/1745219907149?e=1751500800&v=beta&t=CrcTYG4bSqA_tqd6dE2bjTWi3uGw3lAcLYUi6pVD3Fg",
"profileUrn": "ACwAABPrUE4BOd-dj0cq88xakAWa_uApZY0o7s8",
"navigationUrl": "https://www.linkedin.com/in/ACwAABPrUE4BOd-dj0cq88xakAWa_uApZY0o7s8",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Anjan",
"lastName": "Pathak",
"fullName": "Anjan Pathak",
"summary": "Hi, I'm a technology leader with over two decades of experience. My expertise lies in building and deploying cross-channel web applications.\n\nI currently lead the Vantage Circle team to research and develop HR Technology products. \n\nI spent the first 15 years of my career working in the UK and other parts of Europe. I returned to India in 2013. And since then, I have been building the product, operations, and marketing team at Vantage Circle. \n\nAt Vantage Circle, we have gathered over two million tech-savvy employees of some of the top IT companies in the world. This has allowed us to gather big data and create battle-tested future-proof products. Our key focus is to develop web-based SaaS products using the best-of-the-breed web technology. \n\nI have a keen interest in health & wellness, especially Corporate Wellness. Health & wellness at the workplace will be the primary differentiator companies will be ranked upon in the coming years. \n\nIn my spare time, I prepare for my next marathon or triathlon. I've completed multiple full-distance marathons and an Ironman 70.3. My next goal is to conquer a full Ironman triathlon. Recently, I've also started exploring meditation and yoga, taking baby steps in these wellness practices.\n\nInterested to know more about our employee engagement platform at Vantage Circle? Book a FREE DEMO using the links below. We will show you how you can provide an engaging employee experience to your employees.",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Co-Founder & CTO",
"description": "With over 2M+ users and serving some of the top global MNCs of the world, Vantage Circle is a one-stop global employee engagement platform for corporates looking to engage their employees. We have developed a complete suite of cloud-based solutions that help organizations spur employee motivation through our benefits, rewards, and recognition, fitness, and survey solutions. Our four products are: \n\n💪 Vantage Fit: An advanced and customizable health and wellness mobile app aiming to rejuvenate employees' overall wellness.\n\n🏆 Vantage Rewards: A point-based rewarding, peer-to-peer appreciation and social recognition platform.\n\n🛒 Vantage Perks: An employee discount platform that offers a wide range of deals and discounts from leading brands.\n\n📊 Vantage Pulse: A powerful employee survey tool that helps you measure employee engagement, boost performance and improve company morale in the workplace.\n\nFound a product that can add value to your organization? Hit me up with the link to the product :)",
"tenureAtPosition": {
"numYears": 11,
"numMonths": 4
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 11,
"numMonths": 4
},
"startedOn": {
"month": 1,
"year": 2014
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/D4E03AQHlJyP079i9UA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1703846399736?e=1751500800&v=beta&t=EJDDtXZw0SgCKa28J5Fxb0ivZ2wyZL0Sw0hDofFGn5k",
"profileUrn": "ACwAAABGkIYBu57D8yFbCdQC5PqLxN4ve1465xI",
"navigationUrl": "https://www.linkedin.com/in/ACwAAABGkIYBu57D8yFbCdQC5PqLxN4ve1465xI",
"openLink": true,
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
},
{
"firstName": "Sanjay",
"lastName": "Pathak",
"fullName": "Sanjay Pathak",
"summary": "Hello, Myself Sanjay currently working at Britannia industries limited,I have 8 years of experience in FMCG.Previously i am working with ITC limited, CG crop global (Noodles manufacturing company, brand name is waiwai)\nMy qualification is BE Mechanical currently pursuing MBA in operation from distance education.",
"geoRegion": "Guwahati, Assam, India",
"locale": {
"country": "",
"language": ""
},
"schools": {
"educationsCount": 0,
"educationHistory": null
},
"positions": {
"positionsCount": 0,
"positionHistory": null
},
"currentPosition": {
"title": "Production Executive",
"tenureAtPosition": {
"numYears": 3,
"numMonths": 3
},
"companyUrnResolutionResult": {},
"tenureAtCompany": {
"numYears": 3,
"numMonths": 3
},
"startedOn": {
"month": 2,
"year": 2022
}
},
"profilePictureDisplayImage": "https://media.licdn.com/dms/image/v2/C5103AQHmJ4aZTiHrDQ/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1550599298637?e=1751500800&v=beta&t=hF9EewbedbyDnuLMxo9m495XklSa9qfVgX3CjtQg1Tc",
"profileUrn": "ACwAABvWFowBG7fO27dGy3dJu88JSx4pUXfALOo",
"navigationUrl": "https://www.linkedin.com/in/ACwAABvWFowBG7fO27dGy3dJu88JSx4pUXfALOo",
"skillEndorsements": {},
"newsMentions": {},
"userGeneratedContents": {
"userGeneratedContentCount": 0,
"userGeneratedContents": null
}
}
],
"pagination": {
"total": 1272536,
"count": 10,
"start": 0,
"limit": null
}
},
"total_credits": 59025,
"credits_used": 36402.59999999964,
"credits_remaining": 22622.400000000358
}
Status code: 404 NOT FOUND
{
"error": true,
"message": "No leads found for provided details"
}
Last updated