Skip to main content
POST
/
api
/
kununu
/
companies
/
search
/kununu/companies/search
curl --request POST \
  --url https://api.anysite.io/api/kununu/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "de"
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@kununu_search_company",
    "uuid": "<string>",
    "image": "<string>",
    "score": 123,
    "rounded_score": 123,
    "review_count": 123,
    "industry": "<string>",
    "country_code": "<string>",
    "is_top_company": true,
    "is_verified": true,
    "location": {
      "@type": "@kununu_search_company_location",
      "city": "<string>",
      "country": "<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:

"bmw"

"sap"

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
country
enum<string>
default:de

Country edition to search within

Available options:
de,
at,
ch

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@kununu_search_company
uuid
string | null
image
string | null
score
number | null
rounded_score
number | null
review_count
integer | null
industry
string | null
country_code
string | null
is_top_company
boolean | null
is_verified
boolean | null
location
KununuSearchCompanyLocation · object