LinkedIn
LinkedIn profile.info
Fetch a LinkedIn profile from its URL. Normalized JSON, one price per record, automatic failover across sources.
POST
/
v1
/
extract
/
linkedin
/
profile.info
curl -X POST https://api.socialrouter.io/v1/extract/linkedin/profile.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/in/williamhgates"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/in/williamhgates"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/in/williamhgates"
},
)
const run = await sr.run("linkedin/profile.info", {
url: "https://www.linkedin.com/in/williamhgates"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "profile.info",
"url": "https://www.linkedin.com/in/williamhgates",
"served_by": "apify/apimaestro",
"data": [
{
"name": "Satya Nadella",
"title": "Chairman and CEO at Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington, United States",
"profile_url": "https://www.linkedin.com/in/satyanadella",
"source": "linkedin",
"extracted_at": "2026-08-04T14:14:33.932Z",
"first_name": "Satya",
"last_name": "Nadella",
"username": "satyanadella",
"profile_urn": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
"email": "snadella@microsoft.com",
"about": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every org...",
"profile_picture": "https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shr...",
"banner_image": "https://media.licdn.com/dms/image/v2/D5616AQFVwYcBLAcPqQ/profile-displaybackgroundimage-shrink_350_1400/B56Z6tkWeBKAA...",
"city": "Redmond, Washington",
"country": "United States",
"country_code": "US",
"follower_count": 12101133,
"connection_count": 831,
"show_follower_count": true,
"is_creator": true,
"is_influencer": true,
"is_premium": true,
"is_top_voice": true,
"is_verified": true,
"open_to_work": false,
"memorialized": false,
"account_created_at": "2007-12-14T20:35:02.000Z",
"current_company_id": "1035",
"current_company_url": "https://www.linkedin.com/company/microsoft",
"current_company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"top_education_school": {
"name": "The University of Chicago Booth School of Business",
"school_id": "18315",
"school_url": "https://www.linkedin.com/school/universityofchicagoboothschoolofbusiness",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un..."
},
"experience": [
{
"title": "Chairman and CEO",
"company": "Microsoft",
"company_id": "1035",
"company_url": "https://www.linkedin.com/company/1035",
"company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"location": "Greater Seattle Area",
"description": null,
"duration": "Feb 2014 - Present · 12 yrs 7 mos",
"start_date": "Feb 2014",
"end_date": null,
"start_year": 2014,
"end_year": null,
"is_current": true
},
"... 4 more"
],
"education": [
{
"school": "The University of Chicago Booth School of Business",
"school_id": "8398",
"school_url": "https://www.linkedin.com/company/8398",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un...",
"degree": null,
"field_of_study": null,
"description": null,
"duration": "1994 - 1996",
"start_year": 1994,
"end_year": 1996
},
"... 1 more"
],
"featured": [
{
"type": "post",
"title": "The Reverse Information Paradox",
"description": "Some thoughts on the Reverse Information Paradox. https://lnkd.in/g-QKwksS",
"url": "https://www.linkedin.com/feed/update/urn:li:activity:7482090659898630144?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%...",
"image": "https://media.licdn.com/dms/image/sync/v2/D5627AQGBPIAoLYXvbA/articleshare-shrink_1280_800/B56Z9W5vJWHYAg-/0/17838694...",
"like_count": 2577,
"comment_count": 292,
"reactions": [
"... 6 item(s)"
]
},
"... 4 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Fetch a LinkedIn profile from its URL. The response is normalized, so it keeps the same shape whichever offer served it.
The call is synchronous and comes back
Prices are live in the catalogue:
completed or failed. Body fields and error codes shared by every service are documented on Run a service.
Body
string[]
required
The URLs to fetch, as
urls (array) or url (single string). Each one must match an accepted format below, and a mismatch returns 400 invalid_input_format before any routing or billing.string
Single-input form of
urls.number
default:"100"
Maximum number of records to return. Integer, 1-250.
string
Pin one offer, as
source/name. Serving this service: brightdata/linkedin, apify/apimaestro. Omit it (the default) to let the router walk the failover chain.object
Typed options for this service. Validation is strict, so an unknown key or an out-of-enum value returns a corrective
400 instead of being dropped.Hide options
Hide options
boolean
default:"true"
Include the public email lookup.
Accepted URL formats
| Format | Example |
|---|---|
https://www.linkedin.com/in/<handle> | https://www.linkedin.com/in/williamhgates |
Offers
In failover order. The head serves unless you pin another withprovider, and served_by in the response names the one that answered.
| Offer | Inputs per call |
|---|---|
brightdata/linkedin | 1000 |
apify/apimaestro | 1 |
GET /v1/services/linkedin/profile.info. See Credits for how a call is billed.
Response
data[] holds the normalized records, served_by names the offer that answered, and credits_used carries the actual charge.
The example response is a real run with values shortened for readability. A field is present when LinkedIn exposes it for that item, so the exact set varies record to record.
curl -X POST https://api.socialrouter.io/v1/extract/linkedin/profile.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/in/williamhgates"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/in/williamhgates"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/in/williamhgates"
},
)
const run = await sr.run("linkedin/profile.info", {
url: "https://www.linkedin.com/in/williamhgates"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "profile.info",
"url": "https://www.linkedin.com/in/williamhgates",
"served_by": "apify/apimaestro",
"data": [
{
"name": "Satya Nadella",
"title": "Chairman and CEO at Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington, United States",
"profile_url": "https://www.linkedin.com/in/satyanadella",
"source": "linkedin",
"extracted_at": "2026-08-04T14:14:33.932Z",
"first_name": "Satya",
"last_name": "Nadella",
"username": "satyanadella",
"profile_urn": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
"email": "snadella@microsoft.com",
"about": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every org...",
"profile_picture": "https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shr...",
"banner_image": "https://media.licdn.com/dms/image/v2/D5616AQFVwYcBLAcPqQ/profile-displaybackgroundimage-shrink_350_1400/B56Z6tkWeBKAA...",
"city": "Redmond, Washington",
"country": "United States",
"country_code": "US",
"follower_count": 12101133,
"connection_count": 831,
"show_follower_count": true,
"is_creator": true,
"is_influencer": true,
"is_premium": true,
"is_top_voice": true,
"is_verified": true,
"open_to_work": false,
"memorialized": false,
"account_created_at": "2007-12-14T20:35:02.000Z",
"current_company_id": "1035",
"current_company_url": "https://www.linkedin.com/company/microsoft",
"current_company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"top_education_school": {
"name": "The University of Chicago Booth School of Business",
"school_id": "18315",
"school_url": "https://www.linkedin.com/school/universityofchicagoboothschoolofbusiness",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un..."
},
"experience": [
{
"title": "Chairman and CEO",
"company": "Microsoft",
"company_id": "1035",
"company_url": "https://www.linkedin.com/company/1035",
"company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"location": "Greater Seattle Area",
"description": null,
"duration": "Feb 2014 - Present · 12 yrs 7 mos",
"start_date": "Feb 2014",
"end_date": null,
"start_year": 2014,
"end_year": null,
"is_current": true
},
"... 4 more"
],
"education": [
{
"school": "The University of Chicago Booth School of Business",
"school_id": "8398",
"school_url": "https://www.linkedin.com/company/8398",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un...",
"degree": null,
"field_of_study": null,
"description": null,
"duration": "1994 - 1996",
"start_year": 1994,
"end_year": 1996
},
"... 1 more"
],
"featured": [
{
"type": "post",
"title": "The Reverse Information Paradox",
"description": "Some thoughts on the Reverse Information Paradox. https://lnkd.in/g-QKwksS",
"url": "https://www.linkedin.com/feed/update/urn:li:activity:7482090659898630144?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%...",
"image": "https://media.licdn.com/dms/image/sync/v2/D5627AQGBPIAoLYXvbA/articleshare-shrink_1280_800/B56Z9W5vJWHYAg-/0/17838694...",
"like_count": 2577,
"comment_count": 292,
"reactions": [
"... 6 item(s)"
]
},
"... 4 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
⌘I
curl -X POST https://api.socialrouter.io/v1/extract/linkedin/profile.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/in/williamhgates"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/in/williamhgates"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/extract/linkedin/profile.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/in/williamhgates"
},
)
const run = await sr.run("linkedin/profile.info", {
url: "https://www.linkedin.com/in/williamhgates"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "profile.info",
"url": "https://www.linkedin.com/in/williamhgates",
"served_by": "apify/apimaestro",
"data": [
{
"name": "Satya Nadella",
"title": "Chairman and CEO at Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington, United States",
"profile_url": "https://www.linkedin.com/in/satyanadella",
"source": "linkedin",
"extracted_at": "2026-08-04T14:14:33.932Z",
"first_name": "Satya",
"last_name": "Nadella",
"username": "satyanadella",
"profile_urn": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
"email": "snadella@microsoft.com",
"about": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every org...",
"profile_picture": "https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shr...",
"banner_image": "https://media.licdn.com/dms/image/v2/D5616AQFVwYcBLAcPqQ/profile-displaybackgroundimage-shrink_350_1400/B56Z6tkWeBKAA...",
"city": "Redmond, Washington",
"country": "United States",
"country_code": "US",
"follower_count": 12101133,
"connection_count": 831,
"show_follower_count": true,
"is_creator": true,
"is_influencer": true,
"is_premium": true,
"is_top_voice": true,
"is_verified": true,
"open_to_work": false,
"memorialized": false,
"account_created_at": "2007-12-14T20:35:02.000Z",
"current_company_id": "1035",
"current_company_url": "https://www.linkedin.com/company/microsoft",
"current_company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"top_education_school": {
"name": "The University of Chicago Booth School of Business",
"school_id": "18315",
"school_url": "https://www.linkedin.com/school/universityofchicagoboothschoolofbusiness",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un..."
},
"experience": [
{
"title": "Chairman and CEO",
"company": "Microsoft",
"company_id": "1035",
"company_url": "https://www.linkedin.com/company/1035",
"company_logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microso...",
"location": "Greater Seattle Area",
"description": null,
"duration": "Feb 2014 - Present · 12 yrs 7 mos",
"start_date": "Feb 2014",
"end_date": null,
"start_year": 2014,
"end_year": null,
"is_current": true
},
"... 4 more"
],
"education": [
{
"school": "The University of Chicago Booth School of Business",
"school_id": "8398",
"school_url": "https://www.linkedin.com/company/8398",
"school_logo": "https://media.licdn.com/dms/image/v2/D560BAQFZO05jhYKSkw/company-logo_400_400/company-logo_400_400/0/1692627816910/un...",
"degree": null,
"field_of_study": null,
"description": null,
"duration": "1994 - 1996",
"start_year": 1994,
"end_year": 1996
},
"... 1 more"
],
"featured": [
{
"type": "post",
"title": "The Reverse Information Paradox",
"description": "Some thoughts on the Reverse Information Paradox. https://lnkd.in/g-QKwksS",
"url": "https://www.linkedin.com/feed/update/urn:li:activity:7482090659898630144?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%...",
"image": "https://media.licdn.com/dms/image/sync/v2/D5627AQGBPIAoLYXvbA/articleshare-shrink_1280_800/B56Z9W5vJWHYAg-/0/17838694...",
"like_count": 2577,
"comment_count": 292,
"reactions": [
"... 6 item(s)"
]
},
"... 4 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}