Skip to main content
POST
/
api
/
linkedin
/
search
/
companies
/linkedin/search/companies
curl --request POST \
  --url https://api.anysite.io/api/linkedin/search/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 123,
  "timeout": 300,
  "keywords": "",
  "location": [
    "geo:103689695"
  ],
  "industry": [
    "industry:96"
  ],
  "employee_count": []
}
'
[
  {
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "alias": "<string>",
    "@type": "@linkedin_search_company",
    "image": "<string>",
    "industry": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords
string
default:""

Any keyword for searching in the company page. For exact search put desired keywords into brackets

Example:

"microsoft"

location

Location URN, can be obtained in /linkedin/search/locations, only geo urn type is allowed. Or location name.

Example:
["geo:103689695"]
industry

Industry URN or name. Valid top-level industries: Technology, Information and Media; Professional Services; Manufacturing; Hospitals and Health Care; Retail; Government Administration; Holding Companies; Oil, Gas, and Mining; Real Estate and Equipment Rental Services; Transportation, Logistics, Supply Chain and Storage; Utilities; Wholesale. Text auto-resolves to URN.

Example:
["industry:96"]
employee_count
enum<string>[]

Employee count

Available options:
1-10,
11-50,
51-200,
201-500,
501-1000,
1001-5000,
5001-10000,
10001+
Example:
["1-10\", \"5001-10000\""]

Response

Successful Response

urn
LinkedinURN · object
required
name
string
required
url
string
required
alias
string
required
@type
string
default:@linkedin_search_company
image
string | null
industry
string | null