Skip to main content
POST
/
api
/
inhersight
/
companies
/
search
/inhersight/companies/search
curl --request POST \
  --url https://api.anysite.io/api/inhersight/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "order_by": "recommended"
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "InhersightSearchCompany",
    "image": "<string>",
    "composite_score": 123,
    "industry": "<string>",
    "industry_group": "<string>",
    "headquarters": "<string>",
    "employee_range": "<string>",
    "size": "<string>",
    "review_count": 123,
    "rating_count": 123,
    "job_count": 123,
    "is_top_company": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Company name keyword. When set, browse filters are ignored.

Example:

"google"

industry
enum<string> | null

Filter companies by industry

Available options:
agriculture,
art,
consumer_goods,
construction,
corporate,
education,
finance,
government,
health,
legal,
manufacturing,
media,
organization,
recreation,
service,
technology,
transportation
size
enum<string> | null

Filter companies by size (small/medium/large)

Available options:
small,
medium,
large
order_by
enum<string>
default:recommended

Result ordering for browse mode

Available options:
recommended,
top_rated

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
url
string
required
@type
string
default:InhersightSearchCompany
image
string | null
composite_score
number | null
industry
string | null
industry_group
string | null
headquarters
string | null
employee_range
string | null
size
string | null
review_count
integer | null
rating_count
integer | null
job_count
integer | null
is_top_company
boolean | null