Skip to main content
POST
/
api
/
db
/
linkedin
/
search
/
companies
/db/linkedin/search/companies
curl --request POST \
  --url https://api.anysite.io/api/db/linkedin/search/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 123,
  "timeout": 300,
  "keywords": "",
  "name": "",
  "alias": "",
  "urn": [],
  "description": "",
  "website": "",
  "headquarter_location": "",
  "locations": "",
  "specialities": "",
  "hashtags": "",
  "similar_organizations": "",
  "industry": [],
  "industry_name": "",
  "employee_count_min": 123,
  "employee_count_max": 123,
  "founded_on_min": 123,
  "founded_on_max": 123,
  "last_modified_after": 123,
  "is_active": true,
  "page_verification_status": true,
  "headquarter_status": true,
  "country_hq": [],
  "country_any": [],
  "has_website": true,
  "has_description": true,
  "min_description_length": 1
}
'
[
  {
    "urn": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@linkedin_db_company",
    "website": "<string>",
    "locations": [],
    "short_description": "<string>",
    "description": "<string>",
    "employee_count": 123,
    "founded_on": 123,
    "phone": "<string>",
    "organizational_urn": "<string>",
    "page_verification_status": true,
    "last_modified_at": 123,
    "headquarter_status": true,
    "headquarter_location": "<string>",
    "industry": "<string>",
    "specialities": [],
    "is_active": true,
    "employee_count_range": "<string>",
    "similar_organizations": [],
    "hashtags": [],
    "crunchbase_link": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

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:""

Global search across name, description, short_description, specialities, hashtags, locations. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

name
string
default:""

Search in name. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

alias
string
default:""

Search in alias (LinkedIn slug). Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

urn
string[]

Batch lookup by exact URN list, e.g. ['fsd_company:11130470'].

description
string
default:""

Search in description OR short_description. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

website
string
default:""

Search in website. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

headquarter_location
string
default:""

Search in headquarter_location. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

locations
string
default:""

Search in locations array. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

specialities
string
default:""

Search in specialities array. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

hashtags
string
default:""

Exact-match search in hashtags array (case-insensitive, element equality, not substring). Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

similar_organizations
string
default:""

Search in similar_organizations array. Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

industry
string[]

Exact-match industry URNs (e.g. ['industry:96', 'industry:28']).

industry_name
string
default:""

DSL search over industry Label (industries.tsv). Resolves to URN set, then filters industry IN (...). Mini-DSL: whitespace=AND, |=OR (no spaces around |), "phrase"=exact phrase, -token=NOT. Example: acme|tech "machine learning" -intern.

employee_count_min
integer | null

Min employee_count (inclusive).

employee_count_max
integer | null

Max employee_count (inclusive).

founded_on_min
integer | null

Min founded year (inclusive).

founded_on_max
integer | null

Max founded year (inclusive).

last_modified_after
integer | null

Min last_modified_at timestamp (inclusive).

is_active
boolean | null

Filter by is_active flag.

page_verification_status
boolean | null

Filter by page_verification_status flag.

headquarter_status
boolean | null

Filter by headquarter_status flag.

country_hq
string[]

ISO2 country codes (e.g. ['US', 'GB']). Token-aware match strictly in headquarter_location. Avoids substring false positives like 'US' ⊂ 'Russia'.

country_any
string[]

ISO2 country codes. Token-aware match in headquarter_location OR any element of locations array — company is present in any of the listed countries.

has_website
boolean | null

If true, only results with non-empty website. If false, only empty.

has_description
boolean | null

If true, only results with non-empty description. If false, only empty.

min_description_length
integer | null

Minimum length of description (helps drop stub cards).

Required range: x >= 0

Response

Successful Response

urn
string
required
name
string
required
alias
string
required
url
string
required
@type
string
default:@linkedin_db_company
website
string | null
locations
string[]
short_description
string | null
description
string | null
employee_count
integer | null
founded_on
integer | null
phone
string | null
organizational_urn
string | null
page_verification_status
boolean | null
last_modified_at
integer | null
headquarter_status
boolean | null
headquarter_location
string | null
industry
string | null
specialities
string[]
is_active
boolean | null
employee_count_range
string | null
similar_organizations
string[]
hashtags
string[]