AI Social Lookup

Playground

# please hit a request to see the result.
Please hit a request to see the result.

To reveal your api key, please click the button below.


Choose language
Shell Shell
Node.js Node.js
Java Java
C# C#
Python Python
Php Php

To search people in LinkedIn, you need to make a GET call to the following endpoint.

API endpoint: GET /wp-json/tsp/linkedin/v1/search/people

curl --location 'https://thesocialproxy.com/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon' \
--header 'Content-Type: application/json' \'
var request = require('request');
var options = {
  'method': 'GET',
  'url': 'https://thesocialproxy.com/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon',
  'headers': {
    'Content-Type': 'application/json',
  },
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
  .url("https://thesocialproxy.com/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon")
  .method("GET", body)
  .addHeader("Content-Type", "application/json")
  .build();
Response response = client.newCall(request).execute();
var options = new RestClientOptions("https://thesocialproxy.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon", Method.Get);
request.AddHeader("Content-Type", "application/json");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
import requests
import json

url = "https://thesocialproxy.com/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon"

payload = {}
headers = {
  'Content-Type': 'application/json',
}

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

print(response.text)
$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://thesocialproxy.com/wp-json/tsp/linkedin/v1/search/people?consumer_key={CONSUMER_KEY}&consumer_secret={CONSUMER_SECRET}&keywords=Engineer&firstName=Alexie&lastName=Leannon',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Parameters:

  • keywords: Keywords you want to search.

  • locationUrns: Filter by location using either the location’s URN or its ID. To obtain a location’s URN, refer to the locationResolver endpoint. This field allows you to specify multiple locations simultaneously. When using just IDs, the format would look like this: 105080838,102571732.

  • firstName: Filter by first name. Including this parameter will return only results that exactly match the specified first name.

  • lastName: Filter by last name. Including this parameter will return only results that exactly match the specified last name.

  • title: Filter by the current title of the individual. Including this parameter will return only results that exactly match the specified title.

  • companyName: Filter by company name. Including this parameter will return only results that exactly match the specified company name.

  • currentCompany: Filter by company URN. Including this parameter will return only the profiles of users whose current position is at a company with the specified URN. Multiple selections are permitted; simply separate the list of company URNs with commas. For example: "162479,3099084,112136,89934955,967992".

  • pastCompany: Filter by past company URN. This parameter returns only the profiles of users who have worked at the specified companies. Multiple selections are permitted; simply separate the list of company URNs with commas. For example: "162479,3099084,112136,89934955,967992".

  • cursor: Use this optional parameter to paginate through results. Use the cursor returned from your previous request.

Accessibility tools

Powered by - Wemake