Eine Person anhand der LinkedIn-URL nachschlagen
curl --request POST \
--url https://api.pubrio.com/people/linkedin/lookup \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"linkedin_url": "http://www.linkedin.com/in/king-lai-605382b7"
}
'import requests
url = "https://api.pubrio.com/people/linkedin/lookup"
payload = { "linkedin_url": "http://www.linkedin.com/in/king-lai-605382b7" }
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({linkedin_url: 'http://www.linkedin.com/in/king-lai-605382b7'})
};
fetch('https://api.pubrio.com/people/linkedin/lookup', 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.pubrio.com/people/linkedin/lookup",
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' => 'http://www.linkedin.com/in/king-lai-605382b7'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-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.pubrio.com/people/linkedin/lookup"
payload := strings.NewReader("{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-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.pubrio.com/people/linkedin/lookup")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/people/linkedin/lookup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"linkedin_name": "jeffweiner08",
"linkedin_url": "https://www.linkedin.com/in/jeffweiner08",
"name": "Jeff Weiner",
"created_at": "2025-06-08T16:58:16.145Z",
"image_url": "https://media.licdn.com/dms/image/v2/C4D16AQFJHyicpAYHXQ/profile-displaybackgroundimage-shrink_200_800/profile-displaybackgroundimage-shrink_200_800/0/1515797967677?e=2147483647&v=beta&t=bAdvQ-o7JZ1b7OKSKau1vB3DMZIHPtefC40_43yzasI",
"logo_url": "https://media.licdn.com/dms/image/v2/C4D03AQFM3Y2r-OEStw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1515623804978?e=2147483647&v=beta&t=8gxxYGav4qEN7hXdbULm_h_JbZKg9lreAZ7HPXDUbF0",
"headline": "Executive Chairman at LinkedIn / Founding Partner Next Play Ventures",
"description": "Jeff Weiner ist Executive Chairman von LinkedIn, wo er weiterhin dabei hilft, LinkedIns Vision zu verwirklichen, für jedes Mitglied der globalen Arbeitswelt wirtschaftliche Chancen zu schaffen — durch Mentoring, Coaching und die Beratung der aktuellen Führungsebene. \n\nBevor er im Juni 2020 Executive Chairman wurde, war Jeff CEO von LinkedIn. Während seiner elfjährigen Amtszeit wuchs die Mitgliederbasis von LinkedIn von 33 Millionen auf mehr als 690 Millionen, der Umsatz stieg von 78 Millionen auf über 7,9 Milliarden US-Dollar, und das Team wuchs von 338 Mitarbeitenden auf über 16.000.\n\nZusätzlich zu seiner fortlaufenden Arbeit bei LinkedIn ist Jeff Gründungspartner von Next Play Ventures, wo er sich auf Investitionen in und das Coaching von Start-ups in der Frühphase sowie Unternehmen in der Wachstumsphase konzentriert. \n\nEr ist außerdem Gründungs-LP und Mitglied des Investmentausschusses von Concrete Rose Capital, einem Frühphasen-Venture-Fonds, der sich auf Investitionen in diverse Gründerinnen und Gründer, Start-ups, die unterversorgte Gemeinschaften bedienen, und/oder den Aufbau diverser Teams konzentriert. \n\nJeff ist zudem Mitgründer von The Compassion Project, dessen Mission es ist sicherzustellen, dass Mitgefühl an jeder Grundschule in den USA gelehrt wird.\n\nDerzeit ist er Mitglied des Vorstands von Donorschoose.org. \n\nVor LinkedIn war Jeff Executive in Residence bei Accel Partners und Greylock Partners, wo er sich hauptsächlich auf die Beratung der Führungsteams des bestehenden Consumer-Technology-Portfolios der Firma konzentrierte und zugleich eng mit den Partnern der Firma zusammenarbeitete, um neue Investitionsmöglichkeiten zu bewerten.\n\nZuvor war er mehr als sieben Jahre lang in wichtigen Führungspositionen bei Yahoo! tätig, unter anderem als Executive Vice President der Yahoo!-Netzwerksparte, wo er Yahoos Consumer-Web-Produktportfolio verantwortete, darunter Yahoos Front Page, Mail, Search und Media-Produkte.",
"country_code": "US",
"location": null,
"city": "United States",
"linkedin_uid": "22330283",
"company": {
"linkedin_url": "https://www.linkedin.com/company/linkedin",
"company_name": "LinkedIn",
"linkedin_name": "linkedin",
"location": null
},
"employment_history": [
{
"title": "LinkedIn",
"company_name": "LinkedIn",
"linkedin_name": "linkedin",
"linkedin_url": "https://www.linkedin.com/company/linkedin?trk=public_profile_experience-group-header",
"logo_url": null,
"positions": [
{
"subtitle": "LinkedIn",
"meta": "Jul 2020 - Present 5 years",
"start_date": "Jul 2020",
"end_date": "Present",
"title": "Executive Chairman",
"description_html": null,
"location": null
},
{
"subtitle": "LinkedIn",
"meta": "Dec 2008 - Jun 2020 11 years 7 months",
"start_date": "Dec 2008",
"end_date": "Jun 2020",
"title": "CEO",
"description_html": null,
"location": null
}
],
"duration": "16 years 7 months",
"unformatted_description": null
},
"..."
],
"follower_size": 10410599,
"connection_size": 500,
"recommendations": [
"Akosua Boadi-Agyemang “Personally, Jeff, has impacted my journey so much during his tenure as CEO of LinkedIn. In so doing, he has shown me the true personification of servant leadership. Jeff has showed up for me in ways that have changed the trajectory of my career and life, and he did so without knowing me, initially. While I was searching for an internship in 2017, Jeff showed up (commented on my LinkedIn post) and said “Akosua, would be surprised if something doesn’t materialize.” This played a massive part in where I am in my career at Microsoft today. He showed up to support my first LinkedIn Live stream as a beta tester for the feature. I told him the day and time. I was nervous, had never beta tested anything before. I asked the audience “can anyone see and hear me?” and he showed up, saying, “can hear and see you perfectly”. His support is incredible. When I wrote my first article documenting #theBOLDjourney, Jeff showed up - “This is just the beginning.” Again with the encouragement. To say the least, Jeff has used his power and platform as CEO of LinkedIn to not only empower me but, to uplift millions, globally. In addition, through the #plusonepledge he initiated during his tenure, he ensured that others show up for one another, as well. Jeff, thank you for always showing up. And for embodying the true meaning of the Ngoni Bantu word, “Ubuntu” (I am, because we are).”",
"Derek E. Baird, M.Ed. “While I was at Yahoo!, I had the honor of working for Jeff on the Yahoo! Teachers social networking product. Jeff was our executive sponsor on this project and he was our strongest and most passionate advocate. His knowledge of the consumer Internet and youth media space was invaluable and his strategic eye was instrumental in moving our product from a hack day idea into a full beta. On this project Jeff also demonstrated his deep and unwavering commitment to social responsibility. Jeff is a doer. Throughout his tenure on this project he was always more than willing to channel the many resources at Yahoo!, as well as his many connections, to help improve public education in this country. Jeff is a truly exceptional, visionary and inspiring leader. It was a true pleasure to have had the opportunity to work for Jeff Weiner. It was, and continues to be, a highlight of my career.”"
],
"honors_and_awards": null,
"education": null,
"bio": [
{
"title": "Company Website",
"url": "http://www.linkedin.com/"
},
"..."
],
"people_also_viewed": [
{
"linkedin_url": "https://www.linkedin.com/in/coppedge?trk=public_profile_browsemap-profile",
"name": "Rob Coppedge",
"headline": null,
"location": "Portland, Oregon Metropolitan Area"
},
"..."
],
"similar_profiles": [
{
"linkedin_url": "https://www.linkedin.com/in/coppedge",
"name": "Rob Coppedge",
"headline": null
},
"..."
],
"recent_activities": [
{
"id": "7328934302337945608",
"linkedin_url": "https://www.linkedin.com/posts/akothari_next-play-a-mindset-i-picked-up-from-activity-7328934302337945608-hfLO",
"title": "“Next play!” —A mindset I picked up from Jeff, and I believe he got it from Coach K. Doesn’t matter if you just crushed it or slipped up — keep…",
"interaction": "Liked by Jeff Weiner",
"image_url": "https://media.licdn.com/dms/image/v2/D5605AQFsD_LNcQzcKA/videocover-high/B56ZbWa0QpH0B4-/0/1747354093631?e=2147483647&v=beta&t=cqAOZlz3UZdpiX7O-HSMwAROHRS_R8KzIbsp7nAUyfE"
},
"..."
]
}
}{
"code": 40001,
"message": "Errors and codes will vary depending on the scenario, please see the documentation for information.",
"details": {}
}{
"error": "Request rate limit exceeded. Please wait and try again later."
}{
"error": "An unexpected error occurred on the server."
}LinkedIn
LinkedIn-Personenabfrage (Echtzeit)
Personendetails anhand einer LinkedIn-Profil-URL abrufen. Bietet Echtzeit-Datenabruf.
POST
/
people
/
linkedin
/
lookup
Eine Person anhand der LinkedIn-URL nachschlagen
curl --request POST \
--url https://api.pubrio.com/people/linkedin/lookup \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"linkedin_url": "http://www.linkedin.com/in/king-lai-605382b7"
}
'import requests
url = "https://api.pubrio.com/people/linkedin/lookup"
payload = { "linkedin_url": "http://www.linkedin.com/in/king-lai-605382b7" }
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({linkedin_url: 'http://www.linkedin.com/in/king-lai-605382b7'})
};
fetch('https://api.pubrio.com/people/linkedin/lookup', 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.pubrio.com/people/linkedin/lookup",
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' => 'http://www.linkedin.com/in/king-lai-605382b7'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-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.pubrio.com/people/linkedin/lookup"
payload := strings.NewReader("{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-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.pubrio.com/people/linkedin/lookup")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/people/linkedin/lookup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"http://www.linkedin.com/in/king-lai-605382b7\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"linkedin_name": "jeffweiner08",
"linkedin_url": "https://www.linkedin.com/in/jeffweiner08",
"name": "Jeff Weiner",
"created_at": "2025-06-08T16:58:16.145Z",
"image_url": "https://media.licdn.com/dms/image/v2/C4D16AQFJHyicpAYHXQ/profile-displaybackgroundimage-shrink_200_800/profile-displaybackgroundimage-shrink_200_800/0/1515797967677?e=2147483647&v=beta&t=bAdvQ-o7JZ1b7OKSKau1vB3DMZIHPtefC40_43yzasI",
"logo_url": "https://media.licdn.com/dms/image/v2/C4D03AQFM3Y2r-OEStw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1515623804978?e=2147483647&v=beta&t=8gxxYGav4qEN7hXdbULm_h_JbZKg9lreAZ7HPXDUbF0",
"headline": "Executive Chairman at LinkedIn / Founding Partner Next Play Ventures",
"description": "Jeff Weiner ist Executive Chairman von LinkedIn, wo er weiterhin dabei hilft, LinkedIns Vision zu verwirklichen, für jedes Mitglied der globalen Arbeitswelt wirtschaftliche Chancen zu schaffen — durch Mentoring, Coaching und die Beratung der aktuellen Führungsebene. \n\nBevor er im Juni 2020 Executive Chairman wurde, war Jeff CEO von LinkedIn. Während seiner elfjährigen Amtszeit wuchs die Mitgliederbasis von LinkedIn von 33 Millionen auf mehr als 690 Millionen, der Umsatz stieg von 78 Millionen auf über 7,9 Milliarden US-Dollar, und das Team wuchs von 338 Mitarbeitenden auf über 16.000.\n\nZusätzlich zu seiner fortlaufenden Arbeit bei LinkedIn ist Jeff Gründungspartner von Next Play Ventures, wo er sich auf Investitionen in und das Coaching von Start-ups in der Frühphase sowie Unternehmen in der Wachstumsphase konzentriert. \n\nEr ist außerdem Gründungs-LP und Mitglied des Investmentausschusses von Concrete Rose Capital, einem Frühphasen-Venture-Fonds, der sich auf Investitionen in diverse Gründerinnen und Gründer, Start-ups, die unterversorgte Gemeinschaften bedienen, und/oder den Aufbau diverser Teams konzentriert. \n\nJeff ist zudem Mitgründer von The Compassion Project, dessen Mission es ist sicherzustellen, dass Mitgefühl an jeder Grundschule in den USA gelehrt wird.\n\nDerzeit ist er Mitglied des Vorstands von Donorschoose.org. \n\nVor LinkedIn war Jeff Executive in Residence bei Accel Partners und Greylock Partners, wo er sich hauptsächlich auf die Beratung der Führungsteams des bestehenden Consumer-Technology-Portfolios der Firma konzentrierte und zugleich eng mit den Partnern der Firma zusammenarbeitete, um neue Investitionsmöglichkeiten zu bewerten.\n\nZuvor war er mehr als sieben Jahre lang in wichtigen Führungspositionen bei Yahoo! tätig, unter anderem als Executive Vice President der Yahoo!-Netzwerksparte, wo er Yahoos Consumer-Web-Produktportfolio verantwortete, darunter Yahoos Front Page, Mail, Search und Media-Produkte.",
"country_code": "US",
"location": null,
"city": "United States",
"linkedin_uid": "22330283",
"company": {
"linkedin_url": "https://www.linkedin.com/company/linkedin",
"company_name": "LinkedIn",
"linkedin_name": "linkedin",
"location": null
},
"employment_history": [
{
"title": "LinkedIn",
"company_name": "LinkedIn",
"linkedin_name": "linkedin",
"linkedin_url": "https://www.linkedin.com/company/linkedin?trk=public_profile_experience-group-header",
"logo_url": null,
"positions": [
{
"subtitle": "LinkedIn",
"meta": "Jul 2020 - Present 5 years",
"start_date": "Jul 2020",
"end_date": "Present",
"title": "Executive Chairman",
"description_html": null,
"location": null
},
{
"subtitle": "LinkedIn",
"meta": "Dec 2008 - Jun 2020 11 years 7 months",
"start_date": "Dec 2008",
"end_date": "Jun 2020",
"title": "CEO",
"description_html": null,
"location": null
}
],
"duration": "16 years 7 months",
"unformatted_description": null
},
"..."
],
"follower_size": 10410599,
"connection_size": 500,
"recommendations": [
"Akosua Boadi-Agyemang “Personally, Jeff, has impacted my journey so much during his tenure as CEO of LinkedIn. In so doing, he has shown me the true personification of servant leadership. Jeff has showed up for me in ways that have changed the trajectory of my career and life, and he did so without knowing me, initially. While I was searching for an internship in 2017, Jeff showed up (commented on my LinkedIn post) and said “Akosua, would be surprised if something doesn’t materialize.” This played a massive part in where I am in my career at Microsoft today. He showed up to support my first LinkedIn Live stream as a beta tester for the feature. I told him the day and time. I was nervous, had never beta tested anything before. I asked the audience “can anyone see and hear me?” and he showed up, saying, “can hear and see you perfectly”. His support is incredible. When I wrote my first article documenting #theBOLDjourney, Jeff showed up - “This is just the beginning.” Again with the encouragement. To say the least, Jeff has used his power and platform as CEO of LinkedIn to not only empower me but, to uplift millions, globally. In addition, through the #plusonepledge he initiated during his tenure, he ensured that others show up for one another, as well. Jeff, thank you for always showing up. And for embodying the true meaning of the Ngoni Bantu word, “Ubuntu” (I am, because we are).”",
"Derek E. Baird, M.Ed. “While I was at Yahoo!, I had the honor of working for Jeff on the Yahoo! Teachers social networking product. Jeff was our executive sponsor on this project and he was our strongest and most passionate advocate. His knowledge of the consumer Internet and youth media space was invaluable and his strategic eye was instrumental in moving our product from a hack day idea into a full beta. On this project Jeff also demonstrated his deep and unwavering commitment to social responsibility. Jeff is a doer. Throughout his tenure on this project he was always more than willing to channel the many resources at Yahoo!, as well as his many connections, to help improve public education in this country. Jeff is a truly exceptional, visionary and inspiring leader. It was a true pleasure to have had the opportunity to work for Jeff Weiner. It was, and continues to be, a highlight of my career.”"
],
"honors_and_awards": null,
"education": null,
"bio": [
{
"title": "Company Website",
"url": "http://www.linkedin.com/"
},
"..."
],
"people_also_viewed": [
{
"linkedin_url": "https://www.linkedin.com/in/coppedge?trk=public_profile_browsemap-profile",
"name": "Rob Coppedge",
"headline": null,
"location": "Portland, Oregon Metropolitan Area"
},
"..."
],
"similar_profiles": [
{
"linkedin_url": "https://www.linkedin.com/in/coppedge",
"name": "Rob Coppedge",
"headline": null
},
"..."
],
"recent_activities": [
{
"id": "7328934302337945608",
"linkedin_url": "https://www.linkedin.com/posts/akothari_next-play-a-mindset-i-picked-up-from-activity-7328934302337945608-hfLO",
"title": "“Next play!” —A mindset I picked up from Jeff, and I believe he got it from Coach K. Doesn’t matter if you just crushed it or slipped up — keep…",
"interaction": "Liked by Jeff Weiner",
"image_url": "https://media.licdn.com/dms/image/v2/D5605AQFsD_LNcQzcKA/videocover-high/B56ZbWa0QpH0B4-/0/1747354093631?e=2147483647&v=beta&t=cqAOZlz3UZdpiX7O-HSMwAROHRS_R8KzIbsp7nAUyfE"
},
"..."
]
}
}{
"code": 40001,
"message": "Errors and codes will vary depending on the scenario, please see the documentation for information.",
"details": {}
}{
"error": "Request rate limit exceeded. Please wait and try again later."
}{
"error": "An unexpected error occurred on the server."
}Autorisierungen
Body
application/json
Die vollständige URL des LinkedIn-Nutzerprofils. Die URL beginnt mit http und enthält linkedin.com/in/ oder linkedin.com/pub/
Beispiel:
"http://www.linkedin.com/in/king-lai-605382b7"
Antwort
Erfolgreiche Antwort mit Echtzeit-LinkedIn-Details.
Die Antwortinformationen hängen vom jeweiligen Endpunkt ab.
Zuletzt geändert am 4. September 2026

