Skip to main content
POST
/
api
/
linkedin
/
company
/linkedin/company
curl --request POST \
  --url https://api.anysite.io/api/linkedin/company \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "company": "openai"
}'
[
  {
    "@type": "LinkedinCompany",
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "url": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "website": "<string>",
    "locations": [
      {
        "@type": "LinkedinOfficeLocation",
        "name": "<string>",
        "is_headquarter": false,
        "location": "<string>",
        "postal_code": "<string>",
        "country_code": "<string>",
        "geographic_area": "<string>",
        "city": "<string>",
        "description": "<string>",
        "latitude": 123,
        "longitude": 123
      }
    ],
    "short_description": "<string>",
    "description": "<string>",
    "employee_count": 123,
    "founded_on": 123,
    "phone": "<string>",
    "logo_url": "<string>",
    "organizational_urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "page_verification_status": true,
    "last_modified_at": 123,
    "headquarter_status": true,
    "headquarter_location": "<string>",
    "industry": {
      "type": "<string>",
      "value": "<string>"
    },
    "industry_full": {
      "@type": "LinkedinIndustry",
      "urn": {
        "type": "<string>",
        "value": "<string>"
      },
      "name": "<string>",
      "hierarchy": "<string>",
      "description": "<string>"
    },
    "specialities": [
      "<string>"
    ],
    "is_active": true,
    "employee_count_range": "<string>",
    "similar_organizations": [
      {
        "type": "<string>",
        "value": "<string>"
      }
    ],
    "hashtags": [
      "<string>"
    ],
    "crunchbase_link": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
company
required

Company Alias or URL or URN

Examples:

"openai"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

urn
object
required
url
string
required
name
string
required
alias
string
required
@type
string
default:LinkedinCompany
website
string | null
locations
LinkedinOfficeLocation · object[] | null
short_description
string | null
description
string | null
employee_count
integer | null
founded_on
integer | null
phone
string | null
logo_url
string | null
organizational_urn
object | null
page_verification_status
boolean | null
last_modified_at
integer | null
headquarter_status
boolean | null
headquarter_location
string | null
industry
object | null
industry_full
object | null
specialities
string[] | null
is_active
boolean | null
employee_count_range
string | null
similar_organizations
LinkedinURN[Literal[<LinkedinURNPrefix.fsd_company: 'fsd_company'>]] · object[] | null
hashtags
string[] | null
I