Get LinkedIn company

Fetch a public LinkedIn company profile by company page URL.

Recommended client timeout: 90 seconds. Most requests resolve in 2-5 seconds, but set your HTTP client timeout to at least 90 seconds to avoid false timeouts on slower lookups.

Credits

Each successful response deducts 4 credits from your organization. Requests that fail (4xx / 5xx) are not billed.

See the credits documentation for the full rate table.


POST
/data/linkedin/company/get

Authorization

bearerAuth
AuthorizationBearer <token>

Organization API key from Integrations → API keys.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Request body for POST /data/linkedin/company/get.

url*string

Public LinkedIn company page URL, e.g. https://www.linkedin.com/company/snitchfeed.

Length1 <= length <= 2048

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/data/linkedin/company/get" \  -H "Content-Type: application/json" \  -d '{    "url": "string"  }'
{  "requestId": "string",  "company": {    "id": "string",    "name": "string",    "universalName": "string",    "linkedinUrl": "string",    "description": "string",    "tagline": "string",    "websiteUrl": "string",    "industry": "string",    "foundedYear": 0,    "followerCount": 0,    "employeeCount": 0,    "employeeCountRange": {      "start": 0,      "end": 0    },    "headquarter": {      "country": "string",      "city": "string",      "geographicArea": "string",      "postalCode": "string",      "line1": "string",      "line2": "string",      "description": "string",      "headquarter": true    },    "locations": [      {        "country": "string",        "city": "string",        "geographicArea": "string",        "postalCode": "string",        "line1": "string",        "line2": "string",        "description": "string",        "headquarter": true      }    ],    "specialities": [      "string"    ],    "logoUrl": "string"  }}
{  "requestId": "01HXYZABCDEF",  "error": {    "code": "validation_error",    "message": "query: String must contain at least 1 character(s)",    "issues": [      {        "path": "query",        "message": "String must contain at least 1 character(s)"      }    ]  }}
{  "requestId": "01HXYZABCDEF",  "error": {    "code": "unauthorized",    "message": "Invalid or revoked API key."  }}
{  "requestId": "01HXYZABCDEF",  "error": {    "code": "rate_limited",    "message": "Rate limit exceeded for linkedin. Try again later.",    "retryAfter": 42  }}
{  "requestId": "01HXYZABCDEF",  "error": {    "code": "upstream_error",    "message": "LinkedIn search could not be completed. You won't be charged for this request."  }}
{  "requestId": "ce8f36c6-c9e6-4ab1-93b3-d11bbbe886aa",  "error": {    "code": "linkedin_unavailable",    "message": "LinkedIn search is temporarily unavailable. Retry later. You won't be charged for this request."  }}