Skip to main content
POST
/
api
/
kununu
/
companies
/
salaries
/kununu/companies/salaries
curl --request POST \
  --url https://api.anysite.io/api/kununu/companies/salaries \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300,
  "country": "de"
}
'
[
  {
    "alias": "<string>",
    "url": "<string>",
    "@type": "@kununu_company_salary",
    "total_count": 123,
    "compensation": {
      "@type": "@kununu_salary_compensation",
      "score": 123,
      "industry_comparison": 123,
      "review_count": 123
    },
    "satisfaction": {
      "@type": "@kununu_salary_satisfaction",
      "positive_percentage": 123,
      "neutral_percentage": 123,
      "negative_percentage": 123,
      "total_reviews": 123
    },
    "highest_paid": {
      "job_title": "<string>",
      "@type": "@kununu_salary_stat",
      "average": 123
    },
    "lowest_paid": {
      "job_title": "<string>",
      "@type": "@kununu_salary_stat",
      "average": 123
    },
    "ranges": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (URL segment like 'bmwgroup') or a full company profile URL

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
url
string
required
@type
string
default:@kununu_company_salary
total_count
integer | null
compensation
KununuSalaryCompensation · object
satisfaction
KununuSalarySatisfaction · object
highest_paid
KununuSalaryStat · object
lowest_paid
KununuSalaryStat · object
ranges
KununuSalaryRange · object[]