Endpoint Playground
Test Crawlora's LinkedIn Company API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/linkedin/company/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | LinkedIn Company ID |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Google DeepMind",
"link": "https://www.linkedin.com/company/googledeepmind",
"logo": "https://static.licdn.com/scds/common/u/images/email/artdeco/logos/96/linkedin-bug-color.png",
"headline": "We're committed to solving intelligence, to advance science and benefit humanity.",
"follower_count": 1176418,
"num_of_employees_on_linkedin": 0
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns detailed company information by LinkedIn ID.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Google DeepMind",
"link": "https://www.linkedin.com/company/googledeepmind",
"logo": "https://static.licdn.com/scds/common/u/images/email/artdeco/logos/96/linkedin-bug-color.png",
"headline": "We're committed to solving intelligence, to advance science and benefit humanity.",
"follower_count": 1176418,
"num_of_employees_on_linkedin": 0
}
}curl "https://api.crawlora.net/api/v1/linkedin/company/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"