Skip to main content
GET
/
company
/
profile
Get Company Profile
curl --request GET \
  --url https://api.zilodata.com/api/v1/linkedin/company/profile \
  --header 'Authorization: Bearer <token>'
{
  "id": "123456",
  "name": "Tech Corp",
  "description": "Leading technology company",
  "website": "https://techcorp.com",
  "industry": "Technology",
  "employeeCount": 1000,
  "location": "San Francisco, CA"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

companyId
string
required

Company ID or company name

Response

Successful response

id
string
Example:

"123456"

name
string
Example:

"Tech Corp"

description
string
Example:

"Leading technology company"

website
string<uri>
Example:

"https://techcorp.com"

industry
string
Example:

"Technology"

employeeCount
integer
Example:

1000

location
string
Example:

"San Francisco, CA"