Contact Lookalike Finder API
curl --request POST \
--url https://api.cufinder.io/v3/people/lookalikes \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"linkedin_url": "<string>",
"email": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/people/lookalikes"
payload = {
"linkedin_url": "<string>",
"email": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({linkedin_url: '<string>', email: '<string>'})
};
fetch('https://api.cufinder.io/v3/people/lookalikes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/people/lookalikes",
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([
'linkedin_url' => '<string>',
'email' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/people/lookalikes"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/people/lookalikes")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/people/lookalikes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyContact APIs
Contact Lookalike Finder API
The Contact Lookalike Finder API returns 25 people who resemble a given contact. Pass a person’s LinkedIn URL or email and get back similar profiles with their role, company, and firmographics, perfect for expanding from one great lead to a whole list.
POST
/
v3
/
people
/
lookalikes
Contact Lookalike Finder API
curl --request POST \
--url https://api.cufinder.io/v3/people/lookalikes \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"linkedin_url": "<string>",
"email": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/people/lookalikes"
payload = {
"linkedin_url": "<string>",
"email": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({linkedin_url: '<string>', email: '<string>'})
};
fetch('https://api.cufinder.io/v3/people/lookalikes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/people/lookalikes",
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([
'linkedin_url' => '<string>',
'email' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/people/lookalikes"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/people/lookalikes")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/people/lookalikes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyCommon Use Cases
Give one great contact and get 25 more who look just like them.- Prospecting: Expanding from a best customer to similar people.
- Account-Based Marketing: Finding more of the right personas in a segment.
- Recruiting: Sourcing candidates similar to a strong hire.
- List Building: Growing outreach lists from a single seed profile.
Attributes
string
The person’s LinkedIn profile URL. At least one of
linkedin_url or email is required.string
The person’s email address. At least one of
linkedin_url or email is required.Response
{
"success": true,
"data": {
"people": [
{
"first_name": "aidan",
"last_name": "bienstock",
"full_name": "aidan bienstock",
"avatar_url": "media.cufinder.io/person_profile/aidan-bienstock-159536239",
"job": {
"title": "engineering project manager",
"level": null,
"categories": [
"Engineering & Technical",
"Operations",
"Sales"
]
},
"company": {
"name": "5c",
"domain": null,
"website_url": "https://5c.ai",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/5cai",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/aidan-bienstock-159536239",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "5c",
"size": "51-200",
"id": "5cai",
"founded": "2025",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/5cai",
"linkedin_id": "105784960",
"facebook_url": null,
"twitter_url": null,
"website": "https://5c.ai"
},
"title": {
"name": "engineering project manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-07",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "McGill University",
"size": "10001+",
"id": "mcgill-university",
"founded": "1821",
"industry": "Higher Education",
"location": "Montreal, Qc",
"linkedin_url": "linkedin.com/school/mcgill-university",
"linkedin_id": "4855",
"facebook_url": "facebook.com/mcgilluniversity",
"twitter_url": "twitter.com/mcgillu",
"website": "http://www.mcgill.ca/about"
},
"location_names": [],
"end_date": "2026-07",
"start_date": "2022-06",
"title": {
"name": "student",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "mcgill university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/mcgill-university",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": "2024-06",
"end_date": "Present",
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "ben",
"last_name": "miller",
"full_name": "ben miller",
"avatar_url": "media.cufinder.io/person_profile/ben-miller-5b012b50",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "together software",
"domain": null,
"website_url": "https://www.togetherplatform.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/togetherapp",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/ben-miller-5b012b50",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "together software",
"size": "11-50",
"id": "togetherapp",
"founded": null,
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/togetherapp",
"linkedin_id": "18713542",
"facebook_url": null,
"twitter_url": null,
"website": "https://www.togetherplatform.com"
},
"title": {
"name": "engineering manager",
"role": "operations",
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [
"canada"
],
"is_primary": true,
"summary": null
}
],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "bingyu(iris)",
"last_name": "li",
"full_name": "bingyu(iris) li",
"avatar_url": "media.cufinder.io/person_profile/bingyu-iris-li-978087178",
"job": {
"title": "engineering manager i",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "stackadapt",
"domain": null,
"website_url": "https://stackadapt.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/stackadapt",
"facebook_url": "facebook.com/stackadapt",
"twitter_url": "twitter.com/stackadapt"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/bingyu-iris-li-978087178",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 388,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "stackadapt",
"size": "1001-5000",
"id": "stackadapt",
"founded": "2014",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/stackadapt",
"linkedin_id": "5045143",
"facebook_url": null,
"twitter_url": null,
"website": "https://stackadapt.com"
},
"title": {
"name": "engineering manager i",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "Jan 2023",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "scotiabank",
"size": "10001+",
"id": "scotiabank",
"founded": null,
"industry": "banking",
"location": null,
"linkedin_url": "linkedin.com/company/scotiabank",
"linkedin_id": "3139",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.scotiabank.com"
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "university of regina",
"size": null,
"id": "university-of-regina",
"founded": null,
"industry": null,
"location": null,
"linkedin_url": "linkedin.com/company/university-of-regina",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "university of regina",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/university-of-regina",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "bita",
"last_name": "nafardavoodi",
"full_name": "bita nafardavoodi",
"avatar_url": "media.cufinder.io/person_profile/bitanafardavoodi",
"job": {
"title": "senior quality engineer",
"level": null,
"categories": [
"Information Technology",
"Operations",
"Engineering & Technical"
]
},
"company": {
"name": "autotrader.ca",
"domain": null,
"website_url": "https://go.trader.ca",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/autotraderca",
"facebook_url": "facebook.com/autotrader.ca",
"twitter_url": "twitter.com/autotrader_ca"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "ottawa",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/bitanafardavoodi",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "autotrader.ca",
"size": "501-1000",
"id": "autotraderca",
"founded": "1975",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/autotraderca",
"linkedin_id": "166483",
"facebook_url": null,
"twitter_url": null,
"website": "https://go.trader.ca"
},
"title": {
"name": "senior quality engineer",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-01",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "giatec scientific inc.",
"size": "51-200",
"id": "giatec-scientific",
"founded": "2010",
"industry": "civil engineering",
"location": {
"name": null,
"locality": "ottawa",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/giatec-scientific",
"linkedin_id": "2494113",
"facebook_url": "facebook.com/giatec",
"twitter_url": "twitter.com/giatec",
"website": "giatec.ca"
},
"location_names": [
"canada"
],
"end_date": "2026-01",
"start_date": "2023-12",
"title": {
"name": "",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "performetriks",
"size": "1-10",
"id": "performetriks",
"founded": "2017",
"industry": "information technology and services",
"location": "minneapolis, minnesota, united states",
"linkedin_url": "linkedin.com/company/performetriks",
"linkedin_id": "33203532",
"facebook_url": "facebook.com/performetriks",
"twitter_url": "twitter.com/performetriks",
"website": "performetriks.com"
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2022-06",
"title": {
"name": "",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "fanshawe college",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/fanshawe-college",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"0": "f",
"1": "a",
"2": "n",
"3": "s",
"4": "h",
"5": "a",
"6": "w",
"7": "e",
"8": " ",
"9": "c",
"10": "o",
"11": "l",
"12": "l",
"13": "e",
"14": "g",
"15": "e"
},
"degrees": [],
"end_date": null,
"start_date": null,
"majors": [],
"minors": [],
"gpa": null,
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "carlo",
"last_name": "a.",
"full_name": "carlo a.",
"avatar_url": "media.cufinder.io/person_profile/carlo-aldabi",
"job": {
"title": "software engineering student",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "freelancer- self employed",
"domain": null,
"website_url": "www.bubblegumkids.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/freelanceers",
"facebook_url": "facebook.com/datavalet",
"twitter_url": "twitter.com/datavalet"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/carlo-aldabi",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "freelancer- self employed",
"size": "10001+",
"id": "freelanceers",
"founded": "1995",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/freelanceers",
"linkedin_id": "27227311",
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": "2026-07",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "bubblegum kids",
"size": "1-10",
"id": "bubblegum-kids-inc",
"founded": null,
"industry": "food and beverage manufacturing",
"location": null,
"linkedin_url": "linkedin.com/company/bubblegum-kids-inc",
"linkedin_id": "105040492",
"facebook_url": null,
"twitter_url": null,
"website": "www.bubblegumkids.com"
},
"title": {
"name": null
},
"start_date": "2026-01",
"end_date": "2026-07",
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "datavalet",
"size": "51-200",
"id": "datavalet",
"founded": "1998",
"industry": "information technology & services",
"location": "740 rue notre-dame o,#1000,montreal, quebec h3c 3x6, ca",
"linkedin_url": "linkedin.com/company/datavalet",
"linkedin_id": "86848",
"facebook_url": "facebook.com/datavalet",
"twitter_url": "twitter.com/datavalet",
"website": "https://datavalet.com"
},
"location_names": [],
"end_date": null,
"start_date": null,
"title": {
"name": null,
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "concordia university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/concordia-university",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": "2026-01",
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "dave",
"last_name": "fearon",
"full_name": "dave fearon",
"avatar_url": "media.cufinder.io/person_profile/dave-fearon-4378a47",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "slack",
"domain": null,
"website_url": "https://slack.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/tiny-spec-inc",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/dave-fearon-4378a47",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "slack",
"size": "1001-5000",
"id": "tiny-spec-inc",
"founded": null,
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/tiny-spec-inc",
"linkedin_id": "1612748",
"facebook_url": null,
"twitter_url": null,
"website": "https://slack.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "Jan 2023",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": null,
"type": null,
"id": null,
"location": [],
"linkedin_url": null,
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"end_date": "Present",
"start_date": "2023",
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "chuzhen (dawn)",
"last_name": "liao",
"full_name": "chuzhen (dawn) liao",
"avatar_url": "media.cufinder.io/person_profile/dawnliao",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "slack",
"domain": null,
"website_url": "https://slack.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/tiny-spec-inc",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/dawnliao",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "slack",
"size": "1001-5000",
"id": "tiny-spec-inc",
"founded": null,
"industry": "technology, information and internet",
"location": "500 howard st,san francisco, california, us",
"linkedin_url": "linkedin.com/company/tiny-spec-inc",
"linkedin_id": "1612748",
"facebook_url": null,
"twitter_url": null,
"website": "https://slack.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "dae won",
"last_name": "k.",
"full_name": "dae won k.",
"avatar_url": "media.cufinder.io/person_profile/dw2kim",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "loblaw digital",
"domain": null,
"website_url": "http://loblawdigital.co",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/loblaw-digital",
"facebook_url": "facebook.com/kijiji.ca",
"twitter_url": "twitter.com/kijiji"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/dw2kim",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 1000,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "loblaw digital",
"size": "501-1000",
"id": "loblaw-digital",
"founded": null,
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/loblaw-digital",
"linkedin_id": "9450129",
"facebook_url": null,
"twitter_url": null,
"website": "http://loblawdigital.co"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-01",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "kijiji canadasmarketplace",
"size": "51-200",
"id": "kijiji-canadasmarketplace",
"founded": "2005",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/kijiji-canadasmarketplace",
"linkedin_id": "1448259",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.kijiji.ca"
},
"title": {
"name": "",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "2026-01",
"location_names": [
"canada"
],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "homexco",
"size": "11-50",
"id": "homexco",
"founded": "2017",
"industry": "software development",
"location": null,
"linkedin_url": "linkedin.com/company/homexco",
"linkedin_id": "18296301",
"facebook_url": null,
"twitter_url": null,
"website": "http://homex.com"
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "uwaterloo",
"size": null,
"id": "uwaterloo",
"founded": null,
"industry": null,
"location": null,
"linkedin_url": "linkedin.com/company/uwaterloo",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "kijiji canada",
"size": "51-200",
"id": "kijiji-an-ebay-company",
"founded": "2005",
"industry": "internet",
"location": "toronto, ontario, canada",
"linkedin_url": "linkedin.com/company/kijiji-an-ebay-company",
"linkedin_id": "1448259",
"facebook_url": "facebook.com/kijiji.ca",
"twitter_url": "twitter.com/kijiji",
"website": "kijiji.ca"
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2022-06",
"title": {
"name": "",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "university of waterloo",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/uwaterloo",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"0": "u",
"1": "n",
"2": "i",
"3": "v",
"4": "e",
"5": "r",
"6": "s",
"7": "i",
"8": "t",
"9": "y",
"10": " ",
"11": "o",
"12": "f",
"13": " ",
"14": "w",
"15": "a",
"16": "t",
"17": "e",
"18": "r",
"19": "l",
"20": "o",
"21": "o"
},
"degrees": [],
"end_date": null,
"start_date": null,
"majors": [],
"minors": [],
"gpa": null,
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "gabriel",
"last_name": "feyer",
"full_name": "gabriel feyer",
"avatar_url": "media.cufinder.io/person_profile/gabrielfeyer",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "index exchange",
"domain": null,
"website_url": "https://www.indexexchange.com/li",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/index-platform",
"facebook_url": "facebook.com/indexexchange",
"twitter_url": "twitter.com/indexexchange"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/gabrielfeyer",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "index exchange",
"size": "501-1000",
"id": "index-platform",
"founded": "2003",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/index-platform",
"linkedin_id": "3085943",
"facebook_url": "facebook.com/indexexchange",
"twitter_url": "twitter.com/indexexchange",
"website": "https://www.indexexchange.com/li"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [
"canada"
],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "mcgill university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/mcgill-university",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"0": "m",
"1": "c",
"2": "g",
"3": "i",
"4": "l",
"5": "l",
"6": " ",
"7": "u",
"8": "n",
"9": "i",
"10": "v",
"11": "e",
"12": "r",
"13": "s",
"14": "i",
"15": "t",
"16": "y"
},
"degrees": [],
"end_date": null,
"start_date": null,
"majors": [],
"minors": [],
"gpa": null,
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "geethika",
"last_name": "kodali",
"full_name": "geethika kodali",
"avatar_url": "media.cufinder.io/person_profile/geethika-kodali-271092141",
"job": {
"title": "senior quality engineer",
"level": null,
"categories": [
"Information Technology",
"Operations",
"Engineering & Technical"
]
},
"company": {
"name": "marriott tech accelerator",
"domain": null,
"website_url": "https://kpmg.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/marriott-tech-accelerator",
"facebook_url": "facebook.com/kpmgcampuscdn",
"twitter_url": "twitter.com/kpmg_canada"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/geethika-kodali-271092141",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "marriott tech accelerator",
"size": "501-1000",
"id": "marriott-tech-accelerator",
"founded": "2025",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/marriott-tech-accelerator",
"linkedin_id": "107113188",
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": {
"name": "senior quality engineer",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-05",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "kpmg canada",
"size": "5001-10000",
"id": "kpmg-canada",
"founded": null,
"industry": "accounting",
"location": "toronto, ontario, canada",
"linkedin_url": "linkedin.com/company/kpmg-canada",
"linkedin_id": "1517725",
"facebook_url": "facebook.com/kpmgcampuscdn",
"twitter_url": "twitter.com/kpmg_canada",
"website": "kpmg.ca"
},
"location_names": [],
"end_date": "2026-05",
"start_date": "2022-06",
"title": {
"name": null,
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "fanshawe college",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/fanshawe-college",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "jack",
"last_name": "wo",
"full_name": "jack wo",
"avatar_url": "media.cufinder.io/person_profile/jack-wo-8121445b",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "stedi",
"domain": null,
"website_url": "https://www.stedi.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/stedi-inc",
"facebook_url": "facebook.com/amazonwebservices",
"twitter_url": "twitter.com/awscloud"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/jack-wo-8121445b",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "stedi",
"size": "51-200",
"id": "stedi-inc",
"founded": "2017",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/stedi-inc",
"linkedin_id": "15264107",
"facebook_url": null,
"twitter_url": null,
"website": "https://www.stedi.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-01",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "amazon web services (aws)",
"size": "10,001+",
"id": "amazon-web-services",
"founded": "2006",
"industry": "it services and it consulting",
"location": "410 terry ave n,seattle, wa 98019, us",
"linkedin_url": "linkedin.com/company/amazon-web-services",
"linkedin_id": "2382910",
"facebook_url": "facebook.com/amazonwebservices",
"twitter_url": "twitter.com/awscloud",
"website": null
},
"location_names": [],
"end_date": "2026-01",
"start_date": "2023-12",
"title": {
"name": null,
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "the university of british columbia",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/universityofbc",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "joshua",
"last_name": "ho",
"full_name": "joshua ho",
"avatar_url": "media.cufinder.io/person_profile/joshh7",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "voiceflow",
"domain": null,
"website_url": "https://voiceflow.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/voiceflowhq",
"facebook_url": "facebook.com/hqvoiceflow",
"twitter_url": "twitter.com/voiceflowhq"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/joshh7",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "voiceflow",
"size": "201-500",
"id": "voiceflowhq",
"founded": "2019",
"industry": "technology, information and internet",
"location": "535 mission st,san francisco, california 94105, us",
"linkedin_url": "linkedin.com/company/voiceflowhq",
"linkedin_id": "18631562",
"facebook_url": "facebook.com/hqvoiceflow",
"twitter_url": "twitter.com/voiceflowhq",
"website": "https://voiceflow.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "ryerson university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/ryersonu",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "kenneth",
"last_name": "t.",
"full_name": "kenneth t.",
"avatar_url": "media.cufinder.io/person_profile/kthomas30",
"job": {
"title": "software engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "stackadapt",
"domain": null,
"website_url": "http://www.stackadapt.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/stackadapt",
"facebook_url": "facebook.com/stackadapt",
"twitter_url": "twitter.com/stackadapt"
}
},
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/kthomas30",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "maxime",
"last_name": "turcotte",
"full_name": "maxime turcotte",
"avatar_url": "media.cufinder.io/person_profile/maxime-turcotte-5494aa29",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "wunderkind",
"domain": null,
"website_url": "http://www.wunderkind.co",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/bewunderkind",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/maxime-turcotte-5494aa29",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "wunderkind",
"size": "501-1000",
"id": "bewunderkind",
"founded": null,
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/bewunderkind",
"linkedin_id": "65582532",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.wunderkind.co"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "Jan 2023",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "université laval / laval university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/universite-laval",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "mor",
"last_name": "butbul",
"full_name": "mor butbul",
"avatar_url": "media.cufinder.io/person_profile/mor-butbul-4a729478",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "island",
"domain": null,
"website_url": "https://island.io",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/island-io",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/mor-butbul-4a729478",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "island",
"size": "501-1000",
"id": "island-io",
"founded": "2020",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": null,
"region": null,
"metro": null,
"country": null,
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/island-io",
"linkedin_id": "68023390",
"facebook_url": null,
"twitter_url": null,
"website": "https://island.io"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2024-06",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "nanox ai",
"size": "51-200",
"id": "nanox-ai",
"founded": 2014,
"industry": "hospitals and health care",
"location": {
"name": null,
"locality": "kibutz shfayim",
"region": null,
"metro": null,
"country": "kibutz shfayim",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/nanox-ai",
"linkedin_id": "3619463",
"facebook_url": null,
"twitter_url": null,
"website": "https://www.nanox.vision/ai"
},
"location_names": [
"kibutz shfayim"
],
"end_date": "2024-06",
"start_date": "2023-12",
"title": {
"name": "software engineer",
"role": "engineering",
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "nanox ai",
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": null,
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2022-06",
"title": {
"name": "director of engineering",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "other",
"size": "10001+",
"id": "other",
"founded": null,
"industry": "information technology and services",
"location": null,
"linkedin_url": "linkedin.com/company/other",
"linkedin_id": "1587091",
"facebook_url": null,
"twitter_url": null,
"website": "oceantechnology.co.kr"
},
"location_names": [],
"end_date": "2014-03",
"start_date": "2012-03",
"title": {
"name": "oracle dba",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "zebra medical vision ltd",
"size": "51-200",
"id": "zebra-medical-vision-ltd",
"founded": "2014",
"industry": "hospital & health care",
"location": {
"name": "israel",
"locality": null,
"region": null,
"metro": null,
"country": "israel",
"continent": "asia",
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/zebra-medical-vision-ltd",
"linkedin_id": "3619463",
"facebook_url": "facebook.com/zebramedicalvision",
"twitter_url": "twitter.com/zebramedvision",
"website": "zebra-med.com"
},
"location_names": [],
"end_date": null,
"start_date": "2014-12-01",
"title": {
"name": "software engineer",
"role": "engineering",
"sub_role": "software",
"levels": []
},
"is_primary": true,
"summary": "Software Engineer at Zebra Medical Vision Ltd"
}
],
"educations": [
{
"school": {
"name": "ben - gurion university of the negev",
"type": "post-secondary institution",
"id": "-qQ5A0RAzOcCQBHAvD5ZcA_0",
"location": {
"name": "israel",
"locality": null,
"region": null,
"country": "israel",
"continent": "asia"
},
"linkedin_url": "linkedin.com/school/ben-gurion-university",
"facebook_url": "facebook.com/bgu.uni",
"twitter_url": "twitter.com/bengurionuni",
"linkedin_id": "13401",
"website": "in.bgu.ac.il",
"domain": "bgu.ac.il"
},
"end_date": "2024-06",
"start_date": "2014",
"gpa": null,
"degrees": [
"bachelors",
"bachelor of science"
],
"majors": [
"bioinformatics"
],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "nikita",
"last_name": "jajodia",
"full_name": "nikita jajodia",
"avatar_url": "media.cufinder.io/person_profile/nikitajajodia",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "priceline",
"domain": null,
"website_url": "http://www.priceline.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/priceline-com",
"facebook_url": "facebook.com/priceline",
"twitter_url": "twitter.com/priceline"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/nikitajajodia",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "priceline",
"size": "1001-5000",
"id": "priceline-com",
"founded": "1998",
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/priceline-com",
"linkedin_id": "7451",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.priceline.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "Jan 2023",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "thakur institute of management studies, career development & research",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/thakurinstituteofmanagementstudiescareerdevelopmentandresearch",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "nimmy",
"last_name": "joseph",
"full_name": "nimmy joseph",
"avatar_url": "media.cufinder.io/person_profile/nimmy-joseph-bab538236",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "deepflow technologies pvt. ltd.",
"domain": null,
"website_url": "https://www.deepflow.in",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/deepflow-technologies",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/nimmy-joseph-bab538236",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "deepflow technologies pvt. ltd.",
"size": "1-10",
"id": "deepflow-technologies",
"founded": "2019",
"industry": "technology, information and internet",
"location": "morazha- kannapuram road mangattuparamba, near kannur university campus, mangattuparamba,office no. 5,kannur, kerala 670567, in",
"linkedin_url": "linkedin.com/company/deepflow-technologies",
"linkedin_id": "13735024",
"facebook_url": null,
"twitter_url": null,
"website": "https://www.deepflow.in"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": null,
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "penar",
"last_name": "musaraj",
"full_name": "penar musaraj",
"avatar_url": "media.cufinder.io/person_profile/penarmusaraj",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "civilized discourse construction kit, inc.",
"domain": null,
"website_url": "https://www.discourse.org",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/civilized-discourse-construction-kit-inc",
"facebook_url": null,
"twitter_url": "x.com/discourse"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/penarmusaraj",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "civilized discourse construction kit, inc.",
"size": "51-200",
"id": "civilized-discourse-construction-kit-inc",
"founded": "2012",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": null,
"region": null,
"metro": null,
"country": null,
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/civilized-discourse-construction-kit-inc",
"linkedin_id": "5906926",
"facebook_url": null,
"twitter_url": "x.com/discourse",
"website": "https://www.discourse.org"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2024-06",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "saeed",
"last_name": "berih",
"full_name": "saeed berih",
"avatar_url": "media.cufinder.io/person_profile/saeed-berih-31b4785",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "celestica inc",
"domain": null,
"website_url": "http://www.celestica.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/celestica",
"facebook_url": "facebook.com/celesticainc",
"twitter_url": "twitter.com/celestica_inc"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/saeed-berih-31b4785",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "celestica inc",
"size": "10001+",
"id": "celestica",
"founded": "1994",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/celestica",
"linkedin_id": "3392",
"facebook_url": "facebook.com/celesticainc",
"twitter_url": "twitter.com/celestica_inc",
"website": "http://www.celestica.com"
},
"title": {
"name": "engineering manager",
"role": "engineering",
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [
"canada"
],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "celestica inc",
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": null,
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2022-06",
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "dalhousie university;;1991 â 1995;",
"type": "post-secondary institution",
"id": null,
"location": null,
"linkedin_url": null,
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"degrees": [],
"start_date": null,
"end_date": null,
"majors": [],
"minors": [],
"gpa": null,
"summary": null
},
{
"school": {
"name": "dalhousie university",
"type": "post-secondary institution",
"id": "0hTKDVFjRTRJQZD9mVOkAg_0",
"location": {
"name": "halifax, nova scotia, canada",
"locality": "halifax",
"region": "nova scotia",
"country": "canada",
"continent": "north america"
},
"linkedin_url": "linkedin.com/school/dalhousie-university",
"facebook_url": "facebook.com/dalhousieu",
"twitter_url": "twitter.com/dalnews",
"linkedin_id": "10825",
"website": "dal.ca",
"domain": "dal.ca"
},
"end_date": "1995",
"start_date": "1991",
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "parth",
"last_name": "sampat",
"full_name": "parth sampat",
"avatar_url": "media.cufinder.io/person_profile/sampatparth",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "hts (hopper technology solutions)",
"domain": null,
"website_url": "https://hts.hopper.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/hts-hopper-technology-solutions",
"facebook_url": "facebook.com/altitudesports",
"twitter_url": "twitter.com/altitudesports_"
}
},
"location": {
"country": "canada",
"state": "quebec",
"city": "montréal",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/sampatparth",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "hts (hopper technology solutions)",
"size": "501-1000",
"id": "hts-hopper-technology-solutions",
"founded": null,
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/hts-hopper-technology-solutions",
"linkedin_id": "110388956",
"facebook_url": null,
"twitter_url": null,
"website": "https://hts.hopper.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-01",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "altitude-sports.com",
"size": "201-500",
"id": "altitude-sports-com",
"founded": "1984",
"industry": "retail",
"location": "90 rue beaubien ouest,suite 601a,montréal, québec h2s 3g8, ca",
"linkedin_url": "linkedin.com/company/altitude-sports-com",
"linkedin_id": "1175514",
"facebook_url": "facebook.com/altitudesports",
"twitter_url": "twitter.com/altitudesports_",
"website": "https://www.altitude-sports.com"
},
"location_names": [],
"end_date": "2026-01",
"start_date": "2023-12",
"title": {
"name": null,
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "the university of texas at dallas - school of management",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/university-of-texas-at-dallas---naveen-jindal-school-of-management",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "svetlana",
"last_name": "jalloul",
"full_name": "svetlana jalloul",
"avatar_url": "media.cufinder.io/person_profile/svetlana-jalloul-bbba3a57",
"job": {
"title": "quality engineering analyst",
"level": null,
"categories": [
"Engineering & Technical",
"Information Technology",
"Operations"
]
},
"company": {
"name": "celestica",
"domain": null,
"website_url": "http://www.celestica.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/celestica",
"facebook_url": "facebook.com/celesticainc",
"twitter_url": "twitter.com/celestica_inc"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "north york",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/svetlana-jalloul-bbba3a57",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "celestica",
"size": "10001+",
"id": "celestica",
"founded": "1994",
"industry": "technology, information and internet",
"location": {
"name": "toronto, ontario, canada",
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": "north america",
"street_address": "5140 yonge street",
"address_line_2": null,
"postal_code": "m2n 6l7",
"geo": "43.70,-79.41"
},
"linkedin_url": "linkedin.com/company/celestica",
"linkedin_id": "3392",
"facebook_url": "facebook.com/celesticainc",
"twitter_url": "twitter.com/celestica_inc",
"website": "http://www.celestica.com"
},
"title": {
"name": "quality engineering analyst",
"role": "engineering",
"sub_role": null,
"levels": []
},
"start_date": "2014-09",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [
{
"school": {
"name": "seneca college of applied arts and technology",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/senecapoly",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"name": "seneca college",
"type": "post-secondary institution",
"id": "2XsnxO509eqHvvJpki0KrQ_0",
"location": {
"name": "canada",
"locality": null,
"region": null,
"country": "canada",
"continent": "north america"
},
"linkedin_url": "linkedin.com/school/seneca-college",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": "19930",
"website": "senecacollege.ca",
"domain": "senecacollege.ca"
},
"end_date": "2012",
"start_date": "2010",
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"name": "vladimir state university",
"type": "post-secondary institution",
"id": "OKzhBpJZvVWpIYpFVihlmw_0",
"location": {
"name": "russia",
"locality": null,
"region": null,
"country": "russia",
"continent": "europe"
},
"linkedin_url": "linkedin.com/school/владимирский-государственный-университет",
"facebook_url": "facebook.com/vlsu33",
"twitter_url": "twitter.com/vlsu_info",
"linkedin_id": "17021",
"website": "vlsu.ru",
"domain": "vlsu.ru"
},
"end_date": null,
"start_date": null,
"gpa": null,
"degrees": [
"bachelors"
],
"majors": [
"mechanical engineering"
],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "thomas",
"last_name": "kearvell",
"full_name": "thomas kearvell",
"avatar_url": "media.cufinder.io/person_profile/thomaskearvell",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "hivestack",
"domain": null,
"website_url": "http://www.perion.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/perion",
"facebook_url": "facebook.com/perion.network",
"twitter_url": "twitter.com/perionnetwork"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/thomaskearvell",
"facebook_url": "facebook.com/thomas.kearvell",
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "hivestack",
"size": "501-1000",
"id": "perion",
"founded": null,
"industry": "technology, information and internet",
"location": null,
"linkedin_url": "linkedin.com/company/perion",
"linkedin_id": "26531",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.perion.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2026-01",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "ayuda broadsign",
"size": "51-200",
"id": "ayuda-broadsign",
"founded": "2003",
"industry": "software development",
"location": null,
"linkedin_url": "linkedin.com/company/ayuda-broadsign",
"linkedin_id": "140198",
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": null,
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": "linkedin.com/company/periondooh",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2026-01",
"start_date": "2024-06",
"title": {
"name": null,
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "hivestack",
"size": "51-200",
"id": "hivestackdooh",
"founded": 2017,
"industry": "advertising services",
"location": {
"name": null,
"locality": "montreal",
"region": "quebec",
"metro": null,
"country": "montreal",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/hivestackdooh",
"linkedin_id": "15179046",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.hivestack.com"
},
"location_names": [
"montreal"
],
"end_date": "2024-06",
"start_date": "2023-12",
"title": {
"name": "full stack software developer, programmatic digital out of home",
"role": "engineering",
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "hivestack",
"size": "11-50",
"id": "ayuda-x-",
"founded": null,
"industry": "marketing and advertising",
"location": {
"name": "montréal, quebec, canada",
"locality": "montréal",
"region": "quebec",
"metro": null,
"country": "canada",
"continent": "north america",
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/ayuda-x-",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2016-09",
"title": {
"name": "senior software developer and team lead data science",
"role": "engineering",
"sub_role": "data",
"levels": [
"manager",
"senior"
]
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "iss",
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": null,
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2014-04",
"start_date": "2011-05",
"title": {
"name": "web developer and lead design architect",
"role": "engineering",
"sub_role": "web",
"levels": [
"manager"
]
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "microbytes",
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": null,
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2011-09",
"start_date": "2008-05",
"title": {
"name": "store manager",
"role": null,
"sub_role": null,
"levels": [
"manager"
]
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "rds",
"size": "501-1000",
"id": "rds",
"founded": "1989",
"industry": "broadcast media",
"location": {
"name": "montréal, quebec, canada",
"locality": "montréal",
"region": "quebec",
"metro": null,
"country": "canada",
"continent": "north america",
"street_address": null,
"address_line_2": null,
"postal_code": "h2k 4p6",
"geo": null
},
"linkedin_url": "linkedin.com/company/rds",
"linkedin_id": "165674",
"facebook_url": "facebook.com/rds",
"twitter_url": "twitter.com/rdsca",
"website": "rds.ca"
},
"location_names": [],
"end_date": "2011-05",
"start_date": "2011-01",
"title": {
"name": "stagiã re - developpeur web",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "ericsson",
"size": "10001+",
"id": "ericsson",
"founded": "1876",
"industry": "it services and it consulting",
"location": "kista, stockholm",
"linkedin_url": "linkedin.com/company/ericsson",
"linkedin_id": "1060",
"facebook_url": "facebook.com/ericsson",
"twitter_url": "twitter.com/ericsson",
"website": "http://www.ericsson.com"
},
"location_names": [
"stockholm, stockholms lan, sweden"
],
"end_date": "2014-08",
"start_date": "2014-05",
"title": {
"name": "software developer",
"role": "engineering",
"sub_role": "software",
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "myseat.com media",
"size": null,
"id": null,
"founded": null,
"industry": null,
"location": null,
"linkedin_url": null,
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [],
"end_date": "2017-01",
"start_date": "2015-07",
"title": {
"name": "software developer",
"role": "engineering",
"sub_role": "software",
"levels": []
},
"is_primary": false,
"summary": null
},
{
"company": {
"name": "ayuda media systems",
"size": "11-50",
"id": "ayuda-media-systems",
"founded": "2003",
"industry": "computer software",
"location": {
"name": "montréal, quebec, canada",
"locality": "montréal",
"region": "quebec",
"metro": null,
"country": "canada",
"continent": "north america",
"street_address": null,
"address_line_2": null,
"postal_code": "h2y 2e1",
"geo": null
},
"linkedin_url": "linkedin.com/company/ayuda-media-systems",
"linkedin_id": "140198",
"facebook_url": "facebook.com/ayudasystems",
"twitter_url": "twitter.com/ayudasystems",
"website": "ayudasystems.com"
},
"location_names": [
"montréal, quebec, canada"
],
"end_date": "2017-09",
"start_date": "2016-09-01",
"title": {
"name": "full stack software developer, programmatic digital out of home",
"role": "engineering",
"sub_role": "software",
"levels": []
},
"is_primary": false,
"summary": "Full Stack Software Developer at Ayuda Media Systems"
}
],
"educations": [
{
"school": {
"name": "concordia university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/concordia-university",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"name": "cegep john abbott college",
"type": "post-secondary institution",
"id": "1gBmtSOLxJDFazXnexMAMw_0",
"location": {
"name": "canada",
"locality": null,
"region": null,
"country": "canada",
"continent": "north america"
},
"linkedin_url": "linkedin.com/school/cegep-john-abbott-college",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": "20481",
"website": "johnabbott.qc.ca",
"domain": "johnabbott.qc.ca"
},
"start_date": null,
"end_date": "2011",
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
},
{
"school": {
"name": "beaconsfield high school",
"type": "secondary school",
"id": null,
"location": null,
"linkedin_url": null,
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"degrees": [],
"start_date": null,
"end_date": "2008",
"majors": [],
"minors": [],
"gpa": null,
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "victor",
"last_name": "adelaja",
"full_name": "victor adelaja",
"avatar_url": "media.cufinder.io/person_profile/v-adelaja",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "priceline",
"domain": null,
"website_url": "http://www.priceline.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/priceline-com",
"facebook_url": "facebook.com/priceline",
"twitter_url": "twitter.com/priceline"
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/v-adelaja",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": null,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "priceline",
"size": "1001-5000",
"id": "priceline-com",
"founded": "1998",
"industry": "technology, information and internet",
"location": "800 connecticut avenue,norwalk, ct 06854, us",
"linkedin_url": "linkedin.com/company/priceline-com",
"linkedin_id": "7451",
"facebook_url": "facebook.com/priceline",
"twitter_url": "twitter.com/priceline",
"website": "http://www.priceline.com"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "scotiabank",
"size": "10001+",
"id": "scotiabank",
"founded": null,
"industry": "banking",
"location": null,
"linkedin_url": "linkedin.com/company/scotiabank",
"linkedin_id": "3139",
"facebook_url": null,
"twitter_url": null,
"website": "http://www.scotiabank.com"
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "niger delta exploration production plc",
"size": null,
"id": "niger-delta-exploration--production-plc",
"founded": null,
"industry": null,
"location": null,
"linkedin_url": "linkedin.com/company/niger-delta-exploration--production-plc",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
}
],
"educations": [
{
"school": {
"name": "robert gordon university",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": null,
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": null,
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "victoria",
"last_name": "martín",
"full_name": "victoria martín",
"avatar_url": "media.cufinder.io/person_profile/victoriamartinhernandez",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "league",
"domain": null,
"website_url": "https://league.com",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/league-inc-",
"facebook_url": "facebook.com/leagueinc",
"twitter_url": "twitter.com/joinleague"
}
},
"location": {
"country": "canada",
"state": "ontario",
"city": "toronto",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/victoriamartinhernandez",
"facebook_url": null,
"twitter_url": "twitter.com/nirvik66"
},
"summary": null,
"followers_count": 607,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "league",
"size": "501-1000",
"id": "league-inc-",
"founded": "2014",
"industry": "technology, information and internet",
"location": {
"name": null,
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": null,
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/league-inc-",
"linkedin_id": "5401900",
"facebook_url": "facebook.com/leagueinc",
"twitter_url": "twitter.com/joinleague",
"website": "https://league.com"
},
"title": {
"name": "engineering manager",
"role": "engineering",
"sub_role": null,
"levels": []
},
"start_date": "2023-12",
"end_date": "Present",
"location_names": [
"canada"
],
"is_primary": true,
"summary": null
},
{
"company": {
"name": "universidad autonoma de madrid",
"size": null,
"id": "universidad-autonoma-de-madrid",
"founded": null,
"industry": null,
"location": null,
"linkedin_url": "linkedin.com/company/universidad-autonoma-de-madrid",
"linkedin_id": null,
"facebook_url": null,
"twitter_url": null,
"website": null
},
"title": null,
"start_date": null,
"end_date": null,
"location_names": [],
"is_primary": false,
"summary": null
},
{
"company": {
"name": "league",
"size": "1-10",
"id": "nivedya-",
"founded": "2014",
"industry": "marketing and advertising",
"location": "los angeles, california, united states",
"linkedin_url": "linkedin.com/company/nivedya-",
"linkedin_id": "3591845",
"facebook_url": null,
"twitter_url": null,
"website": "league-made.com"
},
"location_names": [],
"end_date": "2023-12",
"start_date": "2022-06",
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "symbility intersect",
"size": "51-200",
"id": "symbility-intersect",
"founded": "2008",
"industry": "internet",
"location": {
"name": "toronto, ontario, canada",
"locality": "toronto",
"region": "ontario",
"metro": null,
"country": "canada",
"continent": "north america",
"street_address": "106 front street east",
"address_line_2": "suite 200",
"postal_code": "m5a 1e1",
"geo": "43.70,-79.41"
},
"linkedin_url": "linkedin.com/company/symbility-intersect",
"linkedin_id": "657497",
"facebook_url": null,
"twitter_url": null,
"website": "symbilityintersect.com"
},
"location_names": [],
"end_date": null,
"start_date": "2015-08",
"title": {
"name": "senior android developer",
"role": "engineering",
"sub_role": null,
"levels": [
"senior"
]
},
"is_primary": true,
"summary": null
},
{
"company": {
"name": "idealista",
"size": "501-1000",
"id": "idealista-com",
"founded": "2000",
"industry": "internet",
"location": {
"name": "spain",
"locality": null,
"region": null,
"metro": null,
"country": "spain",
"continent": "europe",
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/idealista-com",
"linkedin_id": "32440",
"facebook_url": "facebook.com/idealista",
"twitter_url": "twitter.com/idealista",
"website": "idealista.com"
},
"location_names": [
"madrid, madrid, spain"
],
"end_date": "2014-01",
"start_date": "2013-03",
"title": {
"name": "android developer",
"role": "engineering",
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": "The leading real estate company in Spain. idealista.com is a website that allows the direct encounter between people looking for a home, either purchase or rent, and the advertisers. Similar companies around the world are Trulia (USA) or RightMove (UK) Development of the Android mobile application. Add new features to the app as well as taking care that everything runs smoothly and evolves to use the latest trends in android patterns in order to help people find a home. Use of agile methodologies for the development, SCRUM and KANVAN"
},
{
"company": {
"name": "echeckin services",
"size": "1-10",
"id": "echeckin-services",
"founded": "2011",
"industry": "information technology and services",
"location": {
"name": "spain",
"locality": null,
"region": null,
"metro": null,
"country": "spain",
"continent": "europe",
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": null
},
"linkedin_url": "linkedin.com/company/echeckin-services",
"linkedin_id": "2354409",
"facebook_url": null,
"twitter_url": null,
"website": "echeckinservices.com"
},
"location_names": [
"madrid, madrid, spain"
],
"end_date": "2012-12",
"start_date": "2011-04",
"title": {
"name": "chief technology officer and co-founder",
"role": "engineering",
"sub_role": null,
"levels": [
"owner",
"cxo"
]
},
"is_primary": false,
"summary": "Service on the cloud that allows companies to control the presence or actions of their workers at specific points through the mobile phone, using QR Codes or NFC tags for their identification. > Project selected for Business Booster 2011-2012 acceleration program (Valencia, Spain) > Project Selected for Tetuan Valley Spring 2011 acceleration program (Madrid, Spain) > Development of the mobile applications used by the workers to register their presence for Android and iOS operating systems. > Responsible for the database system: model, performance, bulk load processes, maintenance, cleaning and recovering. MongoDB. > Development in JAVA of the web services used in the communications – web / mobile applications / databases – and open API so third parties can integrate the core in their solutions. > Responsible for making decisions about which technologies to use, which functionalities to add and other aspects about the evolution of the service"
},
{
"company": {
"name": "mobawa",
"size": "1-10",
"id": "mobawa",
"founded": "2011",
"industry": "information technology and services",
"location": null,
"linkedin_url": "linkedin.com/company/mobawa",
"linkedin_id": "2265549",
"facebook_url": null,
"twitter_url": null,
"website": "mobawa.com"
},
"location_names": [
"madrid, madrid, spain"
],
"end_date": "2011-04",
"start_date": "2010-11",
"title": {
"name": "chief technology officer and co-founder",
"role": "engineering",
"sub_role": null,
"levels": [
"owner",
"cxo"
]
},
"is_primary": false,
"summary": "Project with the aim of bringing closer the latest technologies to the companies. Development of applications that merge web and mobile applications (Android and iOS) as well as the generation and management of the web services and databases required. Mobawa is no longer available and I've recently picked up the project as personal under the name of Gravitup where in my free time I develop personal ideas and turn them into mobile applications. You can check some of them in the google play, https://play.google.com/st ore/apps/developer?id=GRAVITUP"
},
{
"company": {
"name": "datatronics mobility",
"size": "11-50",
"id": "datatronics-mobility",
"founded": "1997",
"industry": "telecommunications",
"location": {
"name": "madrid, madrid, spain",
"locality": "madrid",
"region": "madrid",
"metro": null,
"country": "spain",
"continent": "europe",
"street_address": null,
"address_line_2": null,
"postal_code": null,
"geo": "40.40,-3.69"
},
"linkedin_url": "linkedin.com/company/datatronics-mobility",
"linkedin_id": "1884060",
"facebook_url": null,
"twitter_url": null,
"website": null
},
"location_names": [
"madrid, madrid, spain"
],
"end_date": "2010-11",
"start_date": "2005-12",
"title": {
"name": "analyst and programmer at r+d department",
"role": "engineering",
"sub_role": null,
"levels": []
},
"is_primary": false,
"summary": "Company dedicated to the tracking and fleet management. Responsible for management of the database both its model and bulk load, maintenance, cleaning and recovering processes. Oracle, SQL Server. Programming in C++ when the GIS fleet tracking application was desktop and using Java to develop the web services required and adding new features when it was migrated to a full-web environment."
}
],
"educations": [
{
"school": {
"name": "universidad autónoma de madrid",
"type": null,
"id": null,
"location": {
"name": null,
"locality": null,
"region": null,
"country": null,
"continent": null
},
"linkedin_url": "linkedin.com/school/universidad-autonoma-de-madrid",
"facebook_url": null,
"twitter_url": null,
"linkedin_id": null,
"website": null,
"domain": null
},
"start_date": "2026-01",
"end_date": null,
"gpa": null,
"degrees": [],
"majors": [],
"minors": [],
"summary": null
}
],
"skills": [],
"certifications": [],
"languages": []
},
{
"first_name": "vin",
"last_name": "rodrigues",
"full_name": "vin rodrigues",
"avatar_url": "media.cufinder.io/person_profile/vinrodrigues",
"job": {
"title": "engineering manager",
"level": null,
"categories": [
"Engineering & Technical",
"Sales"
]
},
"company": {
"name": "loblaw digital",
"domain": null,
"website_url": "http://loblawdigital.co",
"industry": "technology, information and internet",
"type": null,
"employee_range": null,
"followers_count": null,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": null,
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/loblaw-digital",
"facebook_url": null,
"twitter_url": null
}
},
"location": {
"country": "canada",
"state": null,
"city": null,
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/in/vinrodrigues",
"facebook_url": null,
"twitter_url": null
},
"summary": null,
"followers_count": 0,
"emails": [],
"phones": [],
"experiences": [
{
"company": {
"name": "loblaw digital",
"size": "501-1000",
"id": "loblaw-digital",
"founded": "2012",
"industry": "technology, information and internet",
"location": "500 lake shore blvd w,toronto, ontario m5v, ca",
"linkedin_url": "linkedin.com/company/loblaw-digital",
"linkedin_id": "9450129",
"facebook_url": null,
"twitter_url": null,
"website": "http://loblawdigital.co"
},
"title": {
"name": "engineering manager",
"role": null,
"sub_role": null,
"levels": []
},
"start_date": null,
"end_date": "Present",
"location_names": [],
"is_primary": true,
"summary": null
}
],
"educations": [],
"skills": [],
"certifications": [],
"languages": []
}
]
},
"meta": {
"confidence": 97,
"query": {
"linkedin_url": "linkedin.com/in/iain-mckenzie"
},
"credits": {
"charged": 10,
"remaining": 9862
}
}
}
Related APIs
Person Search
Search 1B+ profiles with combined filters.
Person Enrichment
Enrich a person with full contact data.
Company Lookalikes Finder
Discover companies similar to a target.
Reverse Email Lookup
Identify the person behind an email address.

