Skip to main content
POST
/
api
/
v1
/
platform
/
scrapers
/
linkedin
/
company
Get LinkedIn company
curl --request POST \
  --url https://developer.thehog.ai/api/v1/platform/scrapers/linkedin/company \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>' \
  --data '
{
  "identifier": "acme-inc"
}
'
{
  "data": {
    "identifier": "<string>",
    "name": "<string>",
    "description": "<string>",
    "website": "<string>",
    "industry": "<string>",
    "company_size": "<string>",
    "headquarters": "<string>",
    "founded": 123,
    "specialties": [
      "<string>"
    ],
    "logo_url": "<string>",
    "follower_count": 123,
    "employee_count": 123,
    "linkedin_url": "<string>"
  },
  "meta": {
    "requestId": "<string>"
  }
}

POST /api/v1/platform/scrapers/linkedin/company

Get LinkedIn company details by slug or URL.
Retrieve public company metadata for a LinkedIn company slug or URL.

Example

curl -X POST https://developer.thehog.ai/api/v1/platform/scrapers/linkedin/company \
  -H "X-Access-Key: ak_xxxxxxxxxxxxxxxx" \
  -H "X-Secret-Key: sk_xxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "acme-inc"}'

Authorizations

X-Access-Key
string
header
required

The public API key from the Credentials page.

X-Secret-Key
string
header
required

The API secret shown when the credential is created.

Body

application/json
identifier
string
required
Example:

"acme-inc"

Response

LinkedIn company data.

data
object
required
meta
object
required