/linkedin/search/sql/users
curl --request POST \
--url https://api.anysite.io/api/linkedin/search/sql/users \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 123,
"timeout": 300,
"keywords": "",
"name": "",
"headline": "",
"summary": "",
"alias": [],
"urn": [],
"member_id": [],
"last_name": [],
"first_initial": [],
"current_title": "",
"any_title": "",
"seniority": [],
"seniority_min": "<string>",
"function": [],
"any_function": [],
"current_company_name": "",
"current_company_id": [],
"current_company_domain": [],
"any_company_id": [],
"past_company_id": [],
"any_company_domain": [],
"industry": [],
"any_industry": [],
"employee_range": [],
"employee_count_min": 123,
"employee_count_max": 123,
"country": [],
"location": "",
"skills": "",
"languages": "",
"edu_slug": [],
"edu_institution": "",
"edu_field": "",
"edu_ended_year_min": 123,
"edu_ended_year_max": 123,
"months_in_role_max": 1,
"months_in_role_min": 1,
"experience_years_min": 1,
"months_since_change_max": 1,
"n_roles_min": 1,
"n_roles_max": 1,
"n_companies_min": 1,
"n_companies_max": 1,
"promotion_count_min": 1,
"avg_tenure_months_min": 1,
"avg_tenure_months_max": 1,
"profile_score_min": 4,
"is_creator": true,
"is_influencer": true,
"is_top_voice": true,
"is_premium": true,
"open_to_work": true,
"hiring": true,
"verified": true,
"follower_count_min": 123,
"connection_count_min": 123,
"similar_to": [],
"also_viewed": [],
"has_current_role": true,
"has_industry": true,
"has_company_size": true,
"has_education": true,
"has_roles": true,
"has_role_dates": true,
"has_engagement": true,
"fetched_after": 123,
"bucket_total": 51,
"bucket_index": 1
}
'import requests
url = "https://api.anysite.io/api/linkedin/search/sql/users"
payload = {
"count": 123,
"timeout": 300,
"keywords": "",
"name": "",
"headline": "",
"summary": "",
"alias": [],
"urn": [],
"member_id": [],
"last_name": [],
"first_initial": [],
"current_title": "",
"any_title": "",
"seniority": [],
"seniority_min": "<string>",
"function": [],
"any_function": [],
"current_company_name": "",
"current_company_id": [],
"current_company_domain": [],
"any_company_id": [],
"past_company_id": [],
"any_company_domain": [],
"industry": [],
"any_industry": [],
"employee_range": [],
"employee_count_min": 123,
"employee_count_max": 123,
"country": [],
"location": "",
"skills": "",
"languages": "",
"edu_slug": [],
"edu_institution": "",
"edu_field": "",
"edu_ended_year_min": 123,
"edu_ended_year_max": 123,
"months_in_role_max": 1,
"months_in_role_min": 1,
"experience_years_min": 1,
"months_since_change_max": 1,
"n_roles_min": 1,
"n_roles_max": 1,
"n_companies_min": 1,
"n_companies_max": 1,
"promotion_count_min": 1,
"avg_tenure_months_min": 1,
"avg_tenure_months_max": 1,
"profile_score_min": 4,
"is_creator": True,
"is_influencer": True,
"is_top_voice": True,
"is_premium": True,
"open_to_work": True,
"hiring": True,
"verified": True,
"follower_count_min": 123,
"connection_count_min": 123,
"similar_to": [],
"also_viewed": [],
"has_current_role": True,
"has_industry": True,
"has_company_size": True,
"has_education": True,
"has_roles": True,
"has_role_dates": True,
"has_engagement": True,
"fetched_after": 123,
"bucket_total": 51,
"bucket_index": 1
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 123,
timeout: 300,
keywords: '',
name: '',
headline: '',
summary: '',
alias: [],
urn: [],
member_id: [],
last_name: [],
first_initial: [],
current_title: '',
any_title: '',
seniority: [],
seniority_min: '<string>',
function: [],
any_function: [],
current_company_name: '',
current_company_id: [],
current_company_domain: [],
any_company_id: [],
past_company_id: [],
any_company_domain: [],
industry: [],
any_industry: [],
employee_range: [],
employee_count_min: 123,
employee_count_max: 123,
country: [],
location: '',
skills: '',
languages: '',
edu_slug: [],
edu_institution: '',
edu_field: '',
edu_ended_year_min: 123,
edu_ended_year_max: 123,
months_in_role_max: 1,
months_in_role_min: 1,
experience_years_min: 1,
months_since_change_max: 1,
n_roles_min: 1,
n_roles_max: 1,
n_companies_min: 1,
n_companies_max: 1,
promotion_count_min: 1,
avg_tenure_months_min: 1,
avg_tenure_months_max: 1,
profile_score_min: 4,
is_creator: true,
is_influencer: true,
is_top_voice: true,
is_premium: true,
open_to_work: true,
hiring: true,
verified: true,
follower_count_min: 123,
connection_count_min: 123,
similar_to: [],
also_viewed: [],
has_current_role: true,
has_industry: true,
has_company_size: true,
has_education: true,
has_roles: true,
has_role_dates: true,
has_engagement: true,
fetched_after: 123,
bucket_total: 51,
bucket_index: 1
})
};
fetch('https://api.anysite.io/api/linkedin/search/sql/users', 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.anysite.io/api/linkedin/search/sql/users",
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([
'count' => 123,
'timeout' => 300,
'keywords' => '',
'name' => '',
'headline' => '',
'summary' => '',
'alias' => [
],
'urn' => [
],
'member_id' => [
],
'last_name' => [
],
'first_initial' => [
],
'current_title' => '',
'any_title' => '',
'seniority' => [
],
'seniority_min' => '<string>',
'function' => [
],
'any_function' => [
],
'current_company_name' => '',
'current_company_id' => [
],
'current_company_domain' => [
],
'any_company_id' => [
],
'past_company_id' => [
],
'any_company_domain' => [
],
'industry' => [
],
'any_industry' => [
],
'employee_range' => [
],
'employee_count_min' => 123,
'employee_count_max' => 123,
'country' => [
],
'location' => '',
'skills' => '',
'languages' => '',
'edu_slug' => [
],
'edu_institution' => '',
'edu_field' => '',
'edu_ended_year_min' => 123,
'edu_ended_year_max' => 123,
'months_in_role_max' => 1,
'months_in_role_min' => 1,
'experience_years_min' => 1,
'months_since_change_max' => 1,
'n_roles_min' => 1,
'n_roles_max' => 1,
'n_companies_min' => 1,
'n_companies_max' => 1,
'promotion_count_min' => 1,
'avg_tenure_months_min' => 1,
'avg_tenure_months_max' => 1,
'profile_score_min' => 4,
'is_creator' => true,
'is_influencer' => true,
'is_top_voice' => true,
'is_premium' => true,
'open_to_work' => true,
'hiring' => true,
'verified' => true,
'follower_count_min' => 123,
'connection_count_min' => 123,
'similar_to' => [
],
'also_viewed' => [
],
'has_current_role' => true,
'has_industry' => true,
'has_company_size' => true,
'has_education' => true,
'has_roles' => true,
'has_role_dates' => true,
'has_engagement' => true,
'fetched_after' => 123,
'bucket_total' => 51,
'bucket_index' => 1
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <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.anysite.io/api/linkedin/search/sql/users"
payload := strings.NewReader("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<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.anysite.io/api/linkedin/search/sql/users")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/linkedin/search/sql/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"@type": "LinkedinUser",
"internal_id": {
"value": "<string>"
},
"urn": {
"value": "<string>"
},
"first_name": "<string>",
"last_name": "<string>",
"headline": "<string>",
"follower_count": 123,
"image": "<string>",
"background_image": "<string>",
"connection_count": 123,
"top_skills": [
"<string>"
],
"location": "<string>",
"country_code": "<string>",
"country": "<string>",
"city": "<string>",
"pronouns": "<string>",
"custom_pronouns": "<string>",
"experience": [
{
"company": {
"name": "<string>",
"@type": "LinkedinUserExperienceCompany",
"urn": {
"value": "<string>"
},
"url": "<string>",
"alias": "<string>",
"industry": {
"type": "<string>",
"value": "<string>"
},
"industry_full": {
"urn": {
"type": "<string>",
"value": "<string>"
},
"name": "<string>",
"hierarchy": "<string>",
"@type": "LinkedinIndustry"
},
"employee_range": "<string>",
"logo_url": "<string>"
},
"@type": "LinkedinUserExperience",
"position": "<string>",
"interval": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"period": "<string>",
"location": "<string>",
"medias": [
{
"@type": "LinkedinUserExperienceMedia",
"id": "<string>",
"url": "<string>",
"text": "<string>",
"image": "<string>"
}
]
}
],
"education": [
{
"company": {
"name": "<string>",
"@type": "LinkedinUserEducationCompany",
"urn": {
"value": "<string>"
},
"url": "<string>",
"alias": "<string>",
"industry": {
"type": "<string>",
"value": "<string>"
},
"industry_full": {
"urn": {
"type": "<string>",
"value": "<string>"
},
"name": "<string>",
"hierarchy": "<string>",
"@type": "LinkedinIndustry"
},
"employee_range": "<string>",
"logo_url": "<string>"
},
"@type": "LinkedinUserEducation",
"major": "<string>",
"interval": "<string>"
}
],
"languages": [
{
"name": "<string>",
"@type": "LinkedinUserLanguage",
"level": "<string>"
}
],
"certificates": [
{
"name": "<string>",
"@type": "LinkedinUserCertificate",
"company": {
"name": "<string>",
"@type": "LinkedinUserCertificateCompany",
"urn": {
"value": "<string>"
},
"url": "<string>"
},
"created_at": "<string>",
"label": "<string>",
"url": "<string>"
}
],
"honors": [
{
"name": "<string>",
"@type": "LinkedinUserHonor",
"issued_by": "<string>",
"issued_at": "<string>",
"text": "<string>"
}
],
"patents": [
{
"name": "<string>",
"@type": "LinkedinUserPatent",
"id": "<string>",
"issued_at": "<string>",
"text": "<string>",
"url": "<string>",
"inventor_count": 123
}
],
"skills": [
{
"name": "<string>",
"@type": "LinkedinUserSkill",
"urn": {
"value": "<string>"
}
}
],
"verified": false,
"is_premium": false,
"is_top_voice": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}LinkedIn Search
/linkedin/search/sql/users
Find LinkedIn people by role, seniority, company, industry, company size, location, skills and education. Built for ICP discovery, buying-committee mapping, alumni lists and lookalikes.
Price: 1 credit per 1 results
POST
/
api
/
linkedin
/
search
/
sql
/
users
/linkedin/search/sql/users
curl --request POST \
--url https://api.anysite.io/api/linkedin/search/sql/users \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 123,
"timeout": 300,
"keywords": "",
"name": "",
"headline": "",
"summary": "",
"alias": [],
"urn": [],
"member_id": [],
"last_name": [],
"first_initial": [],
"current_title": "",
"any_title": "",
"seniority": [],
"seniority_min": "<string>",
"function": [],
"any_function": [],
"current_company_name": "",
"current_company_id": [],
"current_company_domain": [],
"any_company_id": [],
"past_company_id": [],
"any_company_domain": [],
"industry": [],
"any_industry": [],
"employee_range": [],
"employee_count_min": 123,
"employee_count_max": 123,
"country": [],
"location": "",
"skills": "",
"languages": "",
"edu_slug": [],
"edu_institution": "",
"edu_field": "",
"edu_ended_year_min": 123,
"edu_ended_year_max": 123,
"months_in_role_max": 1,
"months_in_role_min": 1,
"experience_years_min": 1,
"months_since_change_max": 1,
"n_roles_min": 1,
"n_roles_max": 1,
"n_companies_min": 1,
"n_companies_max": 1,
"promotion_count_min": 1,
"avg_tenure_months_min": 1,
"avg_tenure_months_max": 1,
"profile_score_min": 4,
"is_creator": true,
"is_influencer": true,
"is_top_voice": true,
"is_premium": true,
"open_to_work": true,
"hiring": true,
"verified": true,
"follower_count_min": 123,
"connection_count_min": 123,
"similar_to": [],
"also_viewed": [],
"has_current_role": true,
"has_industry": true,
"has_company_size": true,
"has_education": true,
"has_roles": true,
"has_role_dates": true,
"has_engagement": true,
"fetched_after": 123,
"bucket_total": 51,
"bucket_index": 1
}
'import requests
url = "https://api.anysite.io/api/linkedin/search/sql/users"
payload = {
"count": 123,
"timeout": 300,
"keywords": "",
"name": "",
"headline": "",
"summary": "",
"alias": [],
"urn": [],
"member_id": [],
"last_name": [],
"first_initial": [],
"current_title": "",
"any_title": "",
"seniority": [],
"seniority_min": "<string>",
"function": [],
"any_function": [],
"current_company_name": "",
"current_company_id": [],
"current_company_domain": [],
"any_company_id": [],
"past_company_id": [],
"any_company_domain": [],
"industry": [],
"any_industry": [],
"employee_range": [],
"employee_count_min": 123,
"employee_count_max": 123,
"country": [],
"location": "",
"skills": "",
"languages": "",
"edu_slug": [],
"edu_institution": "",
"edu_field": "",
"edu_ended_year_min": 123,
"edu_ended_year_max": 123,
"months_in_role_max": 1,
"months_in_role_min": 1,
"experience_years_min": 1,
"months_since_change_max": 1,
"n_roles_min": 1,
"n_roles_max": 1,
"n_companies_min": 1,
"n_companies_max": 1,
"promotion_count_min": 1,
"avg_tenure_months_min": 1,
"avg_tenure_months_max": 1,
"profile_score_min": 4,
"is_creator": True,
"is_influencer": True,
"is_top_voice": True,
"is_premium": True,
"open_to_work": True,
"hiring": True,
"verified": True,
"follower_count_min": 123,
"connection_count_min": 123,
"similar_to": [],
"also_viewed": [],
"has_current_role": True,
"has_industry": True,
"has_company_size": True,
"has_education": True,
"has_roles": True,
"has_role_dates": True,
"has_engagement": True,
"fetched_after": 123,
"bucket_total": 51,
"bucket_index": 1
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 123,
timeout: 300,
keywords: '',
name: '',
headline: '',
summary: '',
alias: [],
urn: [],
member_id: [],
last_name: [],
first_initial: [],
current_title: '',
any_title: '',
seniority: [],
seniority_min: '<string>',
function: [],
any_function: [],
current_company_name: '',
current_company_id: [],
current_company_domain: [],
any_company_id: [],
past_company_id: [],
any_company_domain: [],
industry: [],
any_industry: [],
employee_range: [],
employee_count_min: 123,
employee_count_max: 123,
country: [],
location: '',
skills: '',
languages: '',
edu_slug: [],
edu_institution: '',
edu_field: '',
edu_ended_year_min: 123,
edu_ended_year_max: 123,
months_in_role_max: 1,
months_in_role_min: 1,
experience_years_min: 1,
months_since_change_max: 1,
n_roles_min: 1,
n_roles_max: 1,
n_companies_min: 1,
n_companies_max: 1,
promotion_count_min: 1,
avg_tenure_months_min: 1,
avg_tenure_months_max: 1,
profile_score_min: 4,
is_creator: true,
is_influencer: true,
is_top_voice: true,
is_premium: true,
open_to_work: true,
hiring: true,
verified: true,
follower_count_min: 123,
connection_count_min: 123,
similar_to: [],
also_viewed: [],
has_current_role: true,
has_industry: true,
has_company_size: true,
has_education: true,
has_roles: true,
has_role_dates: true,
has_engagement: true,
fetched_after: 123,
bucket_total: 51,
bucket_index: 1
})
};
fetch('https://api.anysite.io/api/linkedin/search/sql/users', 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.anysite.io/api/linkedin/search/sql/users",
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([
'count' => 123,
'timeout' => 300,
'keywords' => '',
'name' => '',
'headline' => '',
'summary' => '',
'alias' => [
],
'urn' => [
],
'member_id' => [
],
'last_name' => [
],
'first_initial' => [
],
'current_title' => '',
'any_title' => '',
'seniority' => [
],
'seniority_min' => '<string>',
'function' => [
],
'any_function' => [
],
'current_company_name' => '',
'current_company_id' => [
],
'current_company_domain' => [
],
'any_company_id' => [
],
'past_company_id' => [
],
'any_company_domain' => [
],
'industry' => [
],
'any_industry' => [
],
'employee_range' => [
],
'employee_count_min' => 123,
'employee_count_max' => 123,
'country' => [
],
'location' => '',
'skills' => '',
'languages' => '',
'edu_slug' => [
],
'edu_institution' => '',
'edu_field' => '',
'edu_ended_year_min' => 123,
'edu_ended_year_max' => 123,
'months_in_role_max' => 1,
'months_in_role_min' => 1,
'experience_years_min' => 1,
'months_since_change_max' => 1,
'n_roles_min' => 1,
'n_roles_max' => 1,
'n_companies_min' => 1,
'n_companies_max' => 1,
'promotion_count_min' => 1,
'avg_tenure_months_min' => 1,
'avg_tenure_months_max' => 1,
'profile_score_min' => 4,
'is_creator' => true,
'is_influencer' => true,
'is_top_voice' => true,
'is_premium' => true,
'open_to_work' => true,
'hiring' => true,
'verified' => true,
'follower_count_min' => 123,
'connection_count_min' => 123,
'similar_to' => [
],
'also_viewed' => [
],
'has_current_role' => true,
'has_industry' => true,
'has_company_size' => true,
'has_education' => true,
'has_roles' => true,
'has_role_dates' => true,
'has_engagement' => true,
'fetched_after' => 123,
'bucket_total' => 51,
'bucket_index' => 1
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <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.anysite.io/api/linkedin/search/sql/users"
payload := strings.NewReader("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<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.anysite.io/api/linkedin/search/sql/users")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/linkedin/search/sql/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": \"\",\n \"name\": \"\",\n \"headline\": \"\",\n \"summary\": \"\",\n \"alias\": [],\n \"urn\": [],\n \"member_id\": [],\n \"last_name\": [],\n \"first_initial\": [],\n \"current_title\": \"\",\n \"any_title\": \"\",\n \"seniority\": [],\n \"seniority_min\": \"<string>\",\n \"function\": [],\n \"any_function\": [],\n \"current_company_name\": \"\",\n \"current_company_id\": [],\n \"current_company_domain\": [],\n \"any_company_id\": [],\n \"past_company_id\": [],\n \"any_company_domain\": [],\n \"industry\": [],\n \"any_industry\": [],\n \"employee_range\": [],\n \"employee_count_min\": 123,\n \"employee_count_max\": 123,\n \"country\": [],\n \"location\": \"\",\n \"skills\": \"\",\n \"languages\": \"\",\n \"edu_slug\": [],\n \"edu_institution\": \"\",\n \"edu_field\": \"\",\n \"edu_ended_year_min\": 123,\n \"edu_ended_year_max\": 123,\n \"months_in_role_max\": 1,\n \"months_in_role_min\": 1,\n \"experience_years_min\": 1,\n \"months_since_change_max\": 1,\n \"n_roles_min\": 1,\n \"n_roles_max\": 1,\n \"n_companies_min\": 1,\n \"n_companies_max\": 1,\n \"promotion_count_min\": 1,\n \"avg_tenure_months_min\": 1,\n \"avg_tenure_months_max\": 1,\n \"profile_score_min\": 4,\n \"is_creator\": true,\n \"is_influencer\": true,\n \"is_top_voice\": true,\n \"is_premium\": true,\n \"open_to_work\": true,\n \"hiring\": true,\n \"verified\": true,\n \"follower_count_min\": 123,\n \"connection_count_min\": 123,\n \"similar_to\": [],\n \"also_viewed\": [],\n \"has_current_role\": true,\n \"has_industry\": true,\n \"has_company_size\": true,\n \"has_education\": true,\n \"has_roles\": true,\n \"has_role_dates\": true,\n \"has_engagement\": true,\n \"fetched_after\": 123,\n \"bucket_total\": 51,\n \"bucket_index\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"@type": "LinkedinUser",
"internal_id": {
"value": "<string>"
},
"urn": {
"value": "<string>"
},
"first_name": "<string>",
"last_name": "<string>",
"headline": "<string>",
"follower_count": 123,
"image": "<string>",
"background_image": "<string>",
"connection_count": 123,
"top_skills": [
"<string>"
],
"location": "<string>",
"country_code": "<string>",
"country": "<string>",
"city": "<string>",
"pronouns": "<string>",
"custom_pronouns": "<string>",
"experience": [
{
"company": {
"name": "<string>",
"@type": "LinkedinUserExperienceCompany",
"urn": {
"value": "<string>"
},
"url": "<string>",
"alias": "<string>",
"industry": {
"type": "<string>",
"value": "<string>"
},
"industry_full": {
"urn": {
"type": "<string>",
"value": "<string>"
},
"name": "<string>",
"hierarchy": "<string>",
"@type": "LinkedinIndustry"
},
"employee_range": "<string>",
"logo_url": "<string>"
},
"@type": "LinkedinUserExperience",
"position": "<string>",
"interval": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"period": "<string>",
"location": "<string>",
"medias": [
{
"@type": "LinkedinUserExperienceMedia",
"id": "<string>",
"url": "<string>",
"text": "<string>",
"image": "<string>"
}
]
}
],
"education": [
{
"company": {
"name": "<string>",
"@type": "LinkedinUserEducationCompany",
"urn": {
"value": "<string>"
},
"url": "<string>",
"alias": "<string>",
"industry": {
"type": "<string>",
"value": "<string>"
},
"industry_full": {
"urn": {
"type": "<string>",
"value": "<string>"
},
"name": "<string>",
"hierarchy": "<string>",
"@type": "LinkedinIndustry"
},
"employee_range": "<string>",
"logo_url": "<string>"
},
"@type": "LinkedinUserEducation",
"major": "<string>",
"interval": "<string>"
}
],
"languages": [
{
"name": "<string>",
"@type": "LinkedinUserLanguage",
"level": "<string>"
}
],
"certificates": [
{
"name": "<string>",
"@type": "LinkedinUserCertificate",
"company": {
"name": "<string>",
"@type": "LinkedinUserCertificateCompany",
"urn": {
"value": "<string>"
},
"url": "<string>"
},
"created_at": "<string>",
"label": "<string>",
"url": "<string>"
}
],
"honors": [
{
"name": "<string>",
"@type": "LinkedinUserHonor",
"issued_by": "<string>",
"issued_at": "<string>",
"text": "<string>"
}
],
"patents": [
{
"name": "<string>",
"@type": "LinkedinUserPatent",
"id": "<string>",
"issued_at": "<string>",
"text": "<string>",
"url": "<string>",
"inventor_count": 123
}
],
"skills": [
{
"name": "<string>",
"@type": "LinkedinUserSkill",
"urn": {
"value": "<string>"
}
}
],
"verified": false,
"is_premium": false,
"is_top_voice": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required range:
x <= 1000Required range:
20 <= x <= 1500Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
0 <= x <= 8Required range:
2 <= x <= 100Required range:
x >= 0Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
open_to_work, hiring Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I