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: <access-token>' \
  --data '{
  "timeout": 300,
  "keywords": {
    "exact search": "\"macadamia ltd\" pty",
    "example": "microsoft"
  },
  "location": {
    "by keyword": "Tokyo",
    "by urn": [
      "urn:li:geo:103689695"
    ]
  },
  "industry": {
    "by keyword": "IT",
    "by urn": [
      "urn:li:industry:96"
    ]
  },
  "employee_count": [
    "1-10\", \"5001-10000\""
  ],
  "count": 123
}'
[
  {
    "@type": "LinkedinSearchCompany",
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "industry": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: 0 < 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

Examples:
{
"exact search": "\"macadamia ltd\" pty",
"example": "microsoft"
}
location

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

Examples:
{
"by keyword": "Tokyo",
"by urn": ["urn:li:geo:103689695"]
}
industry

Industry URN, can be obtained in /linkedin/search/industries, only industry urn type is allowed. Or industry name.

Examples:
{
"by keyword": "IT",
"by urn": ["urn:li:industry:96"]
}
employee_count
enum<string>[]

Employee count

Examples:
["1-10\", \"5001-10000\""]

Response

Successful Response

urn
object
required
name
string
required
url
string
required
alias
string
required
@type
string
default:LinkedinSearchCompany
image
string | null
industry
string | null
I