Skip to main content
POST
/
actions
/
linkedin-extract-company
/
run
/
live
Run linkedin-extract-company action live
curl --request POST \
  --url https://api.edges.run/v1/actions/linkedin-extract-company/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "identity_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "identity_mode": "direct",
  "input": {
    "linkedin_company_url": "<string>",
    "custom_data": {}
  }
}'
{
  "company_name": "<string>",
  "specialties": [
    "<string>"
  ],
  "tagline": "<string>",
  "linkedin_company_id": 123,
  "description": "<string>",
  "type": "<string>",
  "founded_on": 123,
  "linkedin_company_url": "<string>",
  "website": "<string>",
  "linkedin_company_phone": "<string>",
  "sales_navigator_company_url": "<string>",
  "industries": [
    "<string>"
  ],
  "industries_v1": [
    "<string>"
  ],
  "industry": "<string>",
  "linkedin_job_search_url": "<string>",
  "followers_count": 123,
  "number_employees": 123,
  "employees_range": "<string>",
  "linkedin_employees_url": "<string>",
  "sales_navigator_employees_url": "<string>",
  "country": "<string>",
  "geographic_area": "<string>",
  "city": "<string>",
  "postal_code": "<string>",
  "headquarters": "<string>",
  "locations": [
    {
      "address": "<string>",
      "geographic_area": "<string>",
      "street": "<string>",
      "postal_code": "<string>",
      "city": "<string>",
      "country": "<string>"
    }
  ],
  "number_of_locations": 123,
  "last_funding_investors": [
    {
      "name": "<string>",
      "crunchbase_company_url": "<string>"
    }
  ],
  "crunchbase_company_url": "<string>",
  "last_funding_date": "2023-12-25",
  "last_funding_type": "<string>",
  "last_funding_raised": 123,
  "last_funding_currency": "<string>",
  "logo_url": "<string>",
  "domain": "<string>",
  "location": "<string>",
  "linkedin_school_id": 123,
  "linkedin_page_claimed": true,
  "updated_at": "2023-11-07T05:31:56Z",
  "affiliates": [
    {
      "company_name": "<string>",
      "entity_urn": "<string>",
      "followers_count": 123,
      "industry": "<string>",
      "linkedin_company_url": "<string>",
      "original_company_name": "<string>",
      "original_linkedin_company_id": "<string>",
      "original_linkedin_company_url": "<string>"
    }
  ]
}
To run LinkedIn actions, you must first create an identity and connect a LinkedIn account, either using our Chrome Extension, username/password login, or Rented Accounts for a hassle-free setup.

Authorizations

X-API-Key
string
header
required

Body

application/json
input
object
required
identity_ids
string<uuid>[] | null

An array of Identity UUIDs linked to identities (e.g. LinkedIn) used to execute the Action. You must provide at least one valid UID with access to the integration. Do not use account_uid values — only user_uid is supported.

identity_mode
enum<string> | null
default:direct

If "auto", the Action will use any identities from the current workspace (unless you have provided a list of identity_ids). "managed" will use the Edges pool of identities for an extra credit cost

Available options:
direct,
auto,
managed

Response

Successful response

company_name
string
specialties
string[]
tagline
string
linkedin_company_id
number
description
string
type
string
founded_on
number
linkedin_company_url
string<uri>
website
string<uri>
linkedin_company_phone
string
sales_navigator_company_url
string<uri>
industries
string[]

Industries taxonomy (v2)

industries_v1
string[]

Industries (v1)

industry
string
linkedin_job_search_url
string<uri>
followers_count
integer
number_employees
number
employees_range
string
linkedin_employees_url
string<uri>
sales_navigator_employees_url
string<uri>
country
string
geographic_area
string
city
string
postal_code
string
headquarters
string
locations
object[]
number_of_locations
number
last_funding_investors
object[]
crunchbase_company_url
string<uri>
last_funding_date
string<date>
last_funding_type
string
last_funding_raised
number
last_funding_currency
string
logo_url
string<uri>
domain
string
location
string
linkedin_school_id
number
linkedin_page_claimed
boolean
updated_at
string<date-time>
affiliates
object[]
I