Skip to main content
POST
/
api
/
kununu
/
companies
/kununu/companies
curl --request POST \
  --url https://api.anysite.io/api/kununu/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300,
  "country": "de"
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@kununu_company",
    "uuid": "<string>",
    "website": "<string>",
    "image": "<string>",
    "industry_id": 123,
    "industry_average_score": 123,
    "country_code": "<string>",
    "score": 123,
    "rounded_score": 123,
    "review_count": 123,
    "review_count_employees": 123,
    "review_count_candidates": 123,
    "culture_review_count": 123,
    "salary_count": 123,
    "salary_ranges_count": 123,
    "follower_count": 123,
    "location_count": 123,
    "first_review_year": 123,
    "is_claimed": true,
    "is_verified": true,
    "employer_segment": "<string>",
    "main_location": {
      "@type": "@kununu_company_location",
      "city": "<string>",
      "state": "<string>",
      "country_code": "<string>"
    },
    "recommendation_rate": {
      "@type": "@kununu_recommendation_rate",
      "percentage": 123,
      "total_reviews": 123,
      "recommended": 123,
      "not_recommended": 123
    },
    "score_trend": {
      "@type": "@kununu_score_trend",
      "newer_than_24_months": 123,
      "older_than_24_months": 123,
      "delta": 123
    },
    "salary_satisfaction": {
      "@type": "@kununu_salary_satisfaction",
      "positive_percentage": 123,
      "neutral_percentage": 123,
      "negative_percentage": 123,
      "total_reviews": 123
    },
    "social_media": {
      "@type": "@kununu_social_media",
      "facebook": "<string>",
      "twitter": "<string>",
      "youtube": "<string>",
      "instagram": "<string>",
      "xing": "<string>",
      "linkedin": "<string>"
    },
    "culture_dimensions": [],
    "benefits": [],
    "score_breakdown": [],
    "salary_ranges": [],
    "awards": [],
    "competitors": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (the URL segment, e.g. 'bmwgroup') or a full company profile URL. The alias can be resolved via /kununu/companies/search.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"bmwgroup"

"sap"

"https://www.kununu.com/de/bmwgroup"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:de

Country edition the company is listed under

Available options:
de,
at,
ch

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@kununu_company
uuid
string | null
website
string | null
image
string | null
industry_id
integer | null
industry_average_score
number | null
country_code
string | null
score
number | null
rounded_score
number | null
review_count
integer | null
review_count_employees
integer | null
review_count_candidates
integer | null
culture_review_count
integer | null
salary_count
integer | null
salary_ranges_count
integer | null
follower_count
integer | null
location_count
integer | null
first_review_year
integer | null
is_claimed
boolean | null
is_verified
boolean | null
employer_segment
string | null
main_location
KununuCompanyLocation · object
recommendation_rate
KununuRecommendationRate · object
score_trend
KununuScoreTrend · object
salary_satisfaction
KununuSalarySatisfaction · object
social_media
KununuSocialMedia · object
culture_dimensions
KununuCultureDimension · object[]
benefits
KununuBenefit · object[]
score_breakdown
KununuScoreBreakdown · object[]
salary_ranges
KununuSalaryRange · object[]
awards
KununuAward · object[]
competitors
KununuCompetitor · object[]