LinkedIn
LinkedIn company.info
Fetch a LinkedIn company page from its URL. Normalized JSON, one price per record, automatic failover across sources.
POST
/
v1
/
linkedin
/
company.info
curl -X POST https://api.socialrouter.io/v1/linkedin/company.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/company/microsoft"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/linkedin/company.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/company/microsoft"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/linkedin/company.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/company/microsoft"
},
)
const run = await sr.run("linkedin/company.info", {
url: "https://www.linkedin.com/company/microsoft"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "company.info",
"url": "https://www.linkedin.com/company/microsoft",
"served_by": "brightdata/linkedin",
"data": [
{
"name": "Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington",
"profile_url": "https://www.linkedin.com/company/microsoft",
"source": "linkedin",
"extracted_at": "2026-07-16T09:06:54.756Z",
"about": "Every company has a mission. What's ours? To empower every person and every organization to achieve more. We believe ...",
"company_id": "1035",
"company_slug": "microsoft",
"website": "https://news.microsoft.com/",
"website_domain": "news.microsoft.com",
"crunchbase_url": "https://www.crunchbase.com/organization/microsoft?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_compa...",
"logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_200_200/B56ZYQ0mrGGoAM-/0/1744038948046/microso...",
"banner_image": "https://media.licdn.com/dms/image/v2/D4E3DAQGWOa_gAs1qXg/image-scale_325_1920/B4EZ8ZTX5SJEAI-/0/1782835937311/microso...",
"industries": "Software Development",
"specialties": "Business Software, Developer Tools, Home & Educational Software, Tablets, Search, Advertising, Servers, Windows Opera...",
"company_size": "10,001+ employees",
"organization_type": "Public Company",
"follower_count": 28633202,
"employees_in_linkedin": 233234,
"headquarters": "Redmond, Washington",
"country_code": "US,AU,CA,FR,DE,JP,GB,DK,BE,FI,IT,KR,NL,NO,ES,SE,CH,BR,CN,IN,MX,RU,ZA,TR,AT,HK,IE,IL,NZ,PL,PT,SA,SG,SK,TW,AE,AR,CL,CO,...",
"country_codes": [
"US",
"... 44 more"
],
"locations": [
"1 Microsoft Way Redmond, Washington 98052, US",
"... 44 more"
],
"formatted_locations": [
"1 Microsoft Way, Redmond, Washington 98052, US",
"... 44 more"
],
"funding": {
"rounds": 2,
"last_round_type": "Post IPO equity",
"last_round_date": "2023-01-09T00:00:00.000Z",
"last_round_raised": null
},
"investors": [],
"employees": [
{
"name": "Reid Hoffman Reid Hoffman is an Influencer",
"title": null,
"profile_url": "https://www.linkedin.com/in/reidhoffman?trk=org-employees",
"profile_picture": "https://media.licdn.com/dms/image/v2/D5603AQHW7wKzPb3DAg/profile-displayphoto-shrink_100_100/profile-displayphoto-shr..."
},
"... 3 more"
],
"affiliated": [
{
"name": "GitHub",
"industry": "Software Development",
"location": "San Francisco, CA",
"profile_url": "https://www.linkedin.com/company/github?trk=affiliated-pages"
},
"... 46 more"
],
"similar": [
{
"name": "Google",
"industry": "Software Development",
"location": "Mountain View, CA",
"profile_url": "https://www.linkedin.com/company/google?trk=similar-pages"
},
"... 9 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Fetch a LinkedIn company page 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. Omit it (the default) to let the router walk the failover chain.object
This service declares no options. Any key sent here returns a corrective
400.Accepted URL formats
| Format | Example |
|---|---|
https://www.linkedin.com/company/<slug> | https://www.linkedin.com/company/microsoft |
Offers
One offer serves this endpoint today. When a second one implements it, failover turns on with no change on your side.| Offer | Inputs per call |
|---|---|
brightdata/linkedin | 1000 |
GET /v1/services/linkedin/company.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/linkedin/company.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/company/microsoft"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/linkedin/company.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/company/microsoft"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/linkedin/company.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/company/microsoft"
},
)
const run = await sr.run("linkedin/company.info", {
url: "https://www.linkedin.com/company/microsoft"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "company.info",
"url": "https://www.linkedin.com/company/microsoft",
"served_by": "brightdata/linkedin",
"data": [
{
"name": "Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington",
"profile_url": "https://www.linkedin.com/company/microsoft",
"source": "linkedin",
"extracted_at": "2026-07-16T09:06:54.756Z",
"about": "Every company has a mission. What's ours? To empower every person and every organization to achieve more. We believe ...",
"company_id": "1035",
"company_slug": "microsoft",
"website": "https://news.microsoft.com/",
"website_domain": "news.microsoft.com",
"crunchbase_url": "https://www.crunchbase.com/organization/microsoft?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_compa...",
"logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_200_200/B56ZYQ0mrGGoAM-/0/1744038948046/microso...",
"banner_image": "https://media.licdn.com/dms/image/v2/D4E3DAQGWOa_gAs1qXg/image-scale_325_1920/B4EZ8ZTX5SJEAI-/0/1782835937311/microso...",
"industries": "Software Development",
"specialties": "Business Software, Developer Tools, Home & Educational Software, Tablets, Search, Advertising, Servers, Windows Opera...",
"company_size": "10,001+ employees",
"organization_type": "Public Company",
"follower_count": 28633202,
"employees_in_linkedin": 233234,
"headquarters": "Redmond, Washington",
"country_code": "US,AU,CA,FR,DE,JP,GB,DK,BE,FI,IT,KR,NL,NO,ES,SE,CH,BR,CN,IN,MX,RU,ZA,TR,AT,HK,IE,IL,NZ,PL,PT,SA,SG,SK,TW,AE,AR,CL,CO,...",
"country_codes": [
"US",
"... 44 more"
],
"locations": [
"1 Microsoft Way Redmond, Washington 98052, US",
"... 44 more"
],
"formatted_locations": [
"1 Microsoft Way, Redmond, Washington 98052, US",
"... 44 more"
],
"funding": {
"rounds": 2,
"last_round_type": "Post IPO equity",
"last_round_date": "2023-01-09T00:00:00.000Z",
"last_round_raised": null
},
"investors": [],
"employees": [
{
"name": "Reid Hoffman Reid Hoffman is an Influencer",
"title": null,
"profile_url": "https://www.linkedin.com/in/reidhoffman?trk=org-employees",
"profile_picture": "https://media.licdn.com/dms/image/v2/D5603AQHW7wKzPb3DAg/profile-displayphoto-shrink_100_100/profile-displayphoto-shr..."
},
"... 3 more"
],
"affiliated": [
{
"name": "GitHub",
"industry": "Software Development",
"location": "San Francisco, CA",
"profile_url": "https://www.linkedin.com/company/github?trk=affiliated-pages"
},
"... 46 more"
],
"similar": [
{
"name": "Google",
"industry": "Software Development",
"location": "Mountain View, CA",
"profile_url": "https://www.linkedin.com/company/google?trk=similar-pages"
},
"... 9 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Previous
job.infoFetch a LinkedIn job posting from its URL. Normalized JSON, one price per record, automatic failover across sources.
Next
⌘I
curl -X POST https://api.socialrouter.io/v1/linkedin/company.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.linkedin.com/company/microsoft"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/linkedin/company.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.linkedin.com/company/microsoft"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/linkedin/company.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.linkedin.com/company/microsoft"
},
)
const run = await sr.run("linkedin/company.info", {
url: "https://www.linkedin.com/company/microsoft"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "linkedin",
"service": "company.info",
"url": "https://www.linkedin.com/company/microsoft",
"served_by": "brightdata/linkedin",
"data": [
{
"name": "Microsoft",
"company": "Microsoft",
"location": "Redmond, Washington",
"profile_url": "https://www.linkedin.com/company/microsoft",
"source": "linkedin",
"extracted_at": "2026-07-16T09:06:54.756Z",
"about": "Every company has a mission. What's ours? To empower every person and every organization to achieve more. We believe ...",
"company_id": "1035",
"company_slug": "microsoft",
"website": "https://news.microsoft.com/",
"website_domain": "news.microsoft.com",
"crunchbase_url": "https://www.crunchbase.com/organization/microsoft?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_compa...",
"logo": "https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_200_200/B56ZYQ0mrGGoAM-/0/1744038948046/microso...",
"banner_image": "https://media.licdn.com/dms/image/v2/D4E3DAQGWOa_gAs1qXg/image-scale_325_1920/B4EZ8ZTX5SJEAI-/0/1782835937311/microso...",
"industries": "Software Development",
"specialties": "Business Software, Developer Tools, Home & Educational Software, Tablets, Search, Advertising, Servers, Windows Opera...",
"company_size": "10,001+ employees",
"organization_type": "Public Company",
"follower_count": 28633202,
"employees_in_linkedin": 233234,
"headquarters": "Redmond, Washington",
"country_code": "US,AU,CA,FR,DE,JP,GB,DK,BE,FI,IT,KR,NL,NO,ES,SE,CH,BR,CN,IN,MX,RU,ZA,TR,AT,HK,IE,IL,NZ,PL,PT,SA,SG,SK,TW,AE,AR,CL,CO,...",
"country_codes": [
"US",
"... 44 more"
],
"locations": [
"1 Microsoft Way Redmond, Washington 98052, US",
"... 44 more"
],
"formatted_locations": [
"1 Microsoft Way, Redmond, Washington 98052, US",
"... 44 more"
],
"funding": {
"rounds": 2,
"last_round_type": "Post IPO equity",
"last_round_date": "2023-01-09T00:00:00.000Z",
"last_round_raised": null
},
"investors": [],
"employees": [
{
"name": "Reid Hoffman Reid Hoffman is an Influencer",
"title": null,
"profile_url": "https://www.linkedin.com/in/reidhoffman?trk=org-employees",
"profile_picture": "https://media.licdn.com/dms/image/v2/D5603AQHW7wKzPb3DAg/profile-displayphoto-shrink_100_100/profile-displayphoto-shr..."
},
"... 3 more"
],
"affiliated": [
{
"name": "GitHub",
"industry": "Software Development",
"location": "San Francisco, CA",
"profile_url": "https://www.linkedin.com/company/github?trk=affiliated-pages"
},
"... 46 more"
],
"similar": [
{
"name": "Google",
"industry": "Software Development",
"location": "Mountain View, CA",
"profile_url": "https://www.linkedin.com/company/google?trk=similar-pages"
},
"... 9 more"
]
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}