Skip to main content
POST
/
api
/
kununu
/
companies
/
reviews
/kununu/companies/reviews
curl --request POST \
  --url https://api.anysite.io/api/kununu/companies/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "de"
}
'
[
  {
    "id": "<string>",
    "@type": "@kununu_review",
    "title": "<string>",
    "score": 123,
    "created_at": "<string>",
    "position": "<string>",
    "department": "<string>",
    "recommended": true,
    "is_former": true,
    "display_status": "<string>",
    "ratings": [],
    "texts": [],
    "company": {
      "@type": "@kununu_review_company",
      "uuid": "<string>",
      "name": "<string>",
      "city": "<string>",
      "country_code": "<string>"
    }
  }
]

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"

count
integer
required

Max number of reviews 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 the company is listed under

Available options:
de,
at,
ch

Response

Successful Response

id
string
required
@type
string
default:@kununu_review
title
string | null
score
number | null
created_at
string | null
position
string | null
department
string | null
is_former
boolean | null
display_status
string | null
ratings
KununuReviewRating · object[]
texts
KununuReviewText · object[]
company
KununuReviewCompany · object