Skip to main content
POST
/
api
/
comparably
/
companies
/
search
/comparably/companies/search
curl --request POST \
  --url https://api.anysite.io/api/comparably/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@comparably_search_company",
    "id": 123,
    "image": "<string>",
    "employee_range": "<string>",
    "industries": "<string>",
    "description": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search keyword

Minimum string length: 1
Examples:

"google"

"microsoft"

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

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@comparably_search_company
id
integer | null
image
string | null
employee_range
string | null
industries
string | null
description
string | null