Free, Turnstile-gated LinkedIn profile lookup (no account)
curl --request POST \
--url https://api.bridgly.app/public/linkedin/profile \
--header 'Content-Type: application/json' \
--data '
{
"memberIdentity": "<string>",
"turnstileToken": "<string>"
}
'import requests
url = "https://api.bridgly.app/public/linkedin/profile"
payload = {
"memberIdentity": "<string>",
"turnstileToken": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({memberIdentity: '<string>', turnstileToken: '<string>'})
};
fetch('https://api.bridgly.app/public/linkedin/profile', 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.bridgly.app/public/linkedin/profile",
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([
'memberIdentity' => '<string>',
'turnstileToken' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.bridgly.app/public/linkedin/profile"
payload := strings.NewReader("{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.bridgly.app/public/linkedin/profile")
.header("Content-Type", "application/json")
.body("{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bridgly.app/public/linkedin/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"timeMs": 123,
"creditsCost": 123,
"data": {
"name": "<string>",
"headline": "<string>",
"location": "<string>",
"profilePhotoUrl": "<string>",
"bannerPhotoUrl": "<string>",
"about": "<string>",
"profileUrl": "<string>",
"openToWork": true,
"hiring": true,
"industry": "<string>",
"experience": [
{
"title": "<string>",
"company": "<string>",
"companyId": "<string>",
"companyUrl": "<string>",
"companyLogoUrl": "<string>",
"employmentType": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>",
"industries": [
"<string>"
]
}
],
"education": [
{
"school": "<string>",
"schoolId": "<string>",
"schoolUrl": "<string>",
"schoolLogoUrl": "<string>",
"degree": "<string>",
"fieldOfStudy": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"grade": "<string>",
"activities": "<string>",
"description": "<string>"
}
],
"volunteering": [
{
"role": "<string>",
"organization": "<string>",
"cause": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>"
}
],
"certifications": [
{
"name": "<string>",
"issuingOrganization": "<string>",
"issueDate": "<string>",
"expirationDate": "<string>",
"credentialId": "<string>",
"credentialUrl": "<string>"
}
],
"skills": [
{
"name": "<string>",
"endorsements": "<string>"
}
],
"languages": [
{
"name": "<string>",
"proficiency": "<string>"
}
],
"publications": [
{
"title": "<string>",
"publisher": "<string>",
"publishDate": "<string>",
"description": "<string>",
"url": "<string>"
}
],
"patents": [
{
"title": "<string>",
"patentOffice": "<string>",
"patentNumber": "<string>",
"issueDate": "<string>",
"description": "<string>"
}
],
"courses": [
{
"name": "<string>",
"number": "<string>"
}
],
"projects": [
{
"name": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>",
"url": "<string>"
}
],
"honorsAndAwards": [
{
"title": "<string>",
"issuer": "<string>",
"issueDate": "<string>",
"description": "<string>"
}
],
"birthday": "<string>",
"address": "<string>"
}
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}Public
Free, Turnstile-gated LinkedIn profile lookup (no account)
POST
/
public
/
linkedin
/
profile
Free, Turnstile-gated LinkedIn profile lookup (no account)
curl --request POST \
--url https://api.bridgly.app/public/linkedin/profile \
--header 'Content-Type: application/json' \
--data '
{
"memberIdentity": "<string>",
"turnstileToken": "<string>"
}
'import requests
url = "https://api.bridgly.app/public/linkedin/profile"
payload = {
"memberIdentity": "<string>",
"turnstileToken": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({memberIdentity: '<string>', turnstileToken: '<string>'})
};
fetch('https://api.bridgly.app/public/linkedin/profile', 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.bridgly.app/public/linkedin/profile",
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([
'memberIdentity' => '<string>',
'turnstileToken' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.bridgly.app/public/linkedin/profile"
payload := strings.NewReader("{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.bridgly.app/public/linkedin/profile")
.header("Content-Type", "application/json")
.body("{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bridgly.app/public/linkedin/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"memberIdentity\": \"<string>\",\n \"turnstileToken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"timeMs": 123,
"creditsCost": 123,
"data": {
"name": "<string>",
"headline": "<string>",
"location": "<string>",
"profilePhotoUrl": "<string>",
"bannerPhotoUrl": "<string>",
"about": "<string>",
"profileUrl": "<string>",
"openToWork": true,
"hiring": true,
"industry": "<string>",
"experience": [
{
"title": "<string>",
"company": "<string>",
"companyId": "<string>",
"companyUrl": "<string>",
"companyLogoUrl": "<string>",
"employmentType": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>",
"industries": [
"<string>"
]
}
],
"education": [
{
"school": "<string>",
"schoolId": "<string>",
"schoolUrl": "<string>",
"schoolLogoUrl": "<string>",
"degree": "<string>",
"fieldOfStudy": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"grade": "<string>",
"activities": "<string>",
"description": "<string>"
}
],
"volunteering": [
{
"role": "<string>",
"organization": "<string>",
"cause": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>"
}
],
"certifications": [
{
"name": "<string>",
"issuingOrganization": "<string>",
"issueDate": "<string>",
"expirationDate": "<string>",
"credentialId": "<string>",
"credentialUrl": "<string>"
}
],
"skills": [
{
"name": "<string>",
"endorsements": "<string>"
}
],
"languages": [
{
"name": "<string>",
"proficiency": "<string>"
}
],
"publications": [
{
"title": "<string>",
"publisher": "<string>",
"publishDate": "<string>",
"description": "<string>",
"url": "<string>"
}
],
"patents": [
{
"title": "<string>",
"patentOffice": "<string>",
"patentNumber": "<string>",
"issueDate": "<string>",
"description": "<string>"
}
],
"courses": [
{
"name": "<string>",
"number": "<string>"
}
],
"projects": [
{
"name": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>",
"url": "<string>"
}
],
"honorsAndAwards": [
{
"title": "<string>",
"issuer": "<string>",
"issueDate": "<string>",
"description": "<string>"
}
],
"birthday": "<string>",
"address": "<string>"
}
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}Body
application/json
Was this page helpful?
⌘I