LinkedIn Company Profile
Get the profile for a LinkedIn company page — name, tagline, description, industry, size, employee and follower counts, founding year, headquarters, specialties, logo, and cover — as JSON. Costs 1 credit.
POST/api/v1/linkedin/company
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsoncompanystringrequiredCompany universal name (slug) from the company page URL, or a full LinkedIn company URL.
Example: microsoft
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.linkedin.company(company="microsoft")
print(results)Response
"id": "1035",
"urn": "urn:li:company:1035",
"universal_name": "microsoft",
"name": "Microsoft",
"tagline": "We're on a mission to empower every person and every organization on the planet to achieve more.",
"description": "Every company has a mission. What is ours? To empower every person and every organization to achieve more.",
"website": "https://news.microsoft.com/",
"industry": "Software Development",
"company_size": "10,001+ employees",
"employee_count": 245000,
"follower_count": 25184320,
"founded": 1975,
"headquarters": "Redmond, Washington",
"logo": "https://media.licdn.com/dms/image/company/logo_400_400.png",
"cover": "https://media.licdn.com/dms/image/company/cover_1128_376.jpg",
"url": "https://www.linkedin.com/company/microsoft"
},
"response_time": 1420,
"credits_used": 1,
"credits_remaining": 4739
}