Scrape a LinkedIn company page
curl --request POST \
--url https://api.scrapeunblocker.com/companies/linkedin \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/companies/linkedin"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/companies/linkedin', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Plugins
Scrape a LinkedIn company page
Fetches a public LinkedIn company page for company (a slug like ‘microsoft’ or a full company URL) and returns it as JSON: name, tagline, description, industry, companySize, employeeCount, headquarters, a structured address, type, founded, specialties, website, followers, logo and recent posts. No LinkedIn login required.
Scrape a LinkedIn company page
curl --request POST \
--url https://api.scrapeunblocker.com/companies/linkedin \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/companies/linkedin"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/companies/linkedin', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
LinkedIn company slug (e.g. 'microsoft') or a full company URL.
Exit-IP country (ISO-2). Leave blank to let the API pick.
Response
JSON with the company object.

