Skip to main content
POST
/
api
/
wttj
/
companies
/
search
/wttj/companies/search
curl --request POST \
  --url https://api.anysite.io/api/wttj/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "language": "en",
  "country_code": "FR",
  "latitude": 0,
  "longitude": 0,
  "radius": 2
}
'
[
  {
    "@type": "@wttj_company_search_hit",
    "name": "<string>",
    "alias": "<string>",
    "reference": "<string>",
    "summary": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "sectors": [],
    "tools": [],
    "employee_count": 123,
    "size": "<string>",
    "job_count": 123,
    "labels": [],
    "offices": [],
    "url": "<string>"
  }
]

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 companies 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 or tech-stack query

Example:

"fintech"

language
enum<string>
default:en

Result localization language

Available options:
cs,
en,
es,
fr,
sk
sector
enum<string> | null

Parent industry/sector filter

Available options:
Tech,
Banking / Insurance / Finance,
Consulting / Audit,
Health / Social / Environment,
Advertising / Marketing / Agency,
Culture / Media / Entertainment,
Education / Training / Recruitment,
Industry,
Distribution,
Food and Beverage,
Fashion / Luxury / Beauty / Lifestyle,
Real Estate,
Mobility / Transport,
Corporate Services,
Hotel / Tourism / Leisure,
Engineering,
Nonprofit / Association,
Architecture,
Legal / Law,
Public Administration
country_code
string | null

Office country ISO alpha-2 code filter, e.g. FR

Example:

"FR"

latitude
number | null

Latitude for geo radius search

Required range: -90 <= x <= 90
longitude
number | null

Longitude for geo radius search

Required range: -180 <= x <= 180
radius
integer | null

Geo search radius in meters

Required range: x >= 1

Response

Successful Response

@type
string
default:@wttj_company_search_hit
name
string | null
alias
string | null
reference
string | null
summary
string | null
image
string | null
cover
string | null
sectors
WttjSectorEntity · object[]
tools
string[]
employee_count
integer | null
size
string | null
job_count
integer | null
labels
string[]
offices
WttjOffice · object[]
url
string | null