Kununu Review Lookup
Look up one Kununu review by its stable UUID within the company and review-type scope where it was originally observed. A review_not_found response is only returned after Kununu accepts the exact UUID filter and returns a valid empty result. Upstream blocks, timeouts, errors, and malformed responses are returned as retryable or indeterminate failures and never as a removed review.
Run this endpoint
Endpoint
https://scrappa.co/api/kununu/review
https://scrappa.co/api/kununu/review
x-api-key
reviewId
= example
country
= US
company_slug
= example
{
"meta": {
"cached": false,
"confirmed": true,
"retryable": false,
"checked_at": "2026-07-13T20:00:00.000000Z"
},
"exists": true,
"review": {
"uuid": "4ff54c57-fffe-4bc0-a8f5-5b25082a4dac",
"score": 1,
"title": "Review title",
"displayStatus": "SHOW_FULL"
},
...
Parameters
Start with the required fields, then add optional filters only when your use case needs them.
Runnable path
4 required parameters needed before sending a request.
2 optional filters available.
string
Required
Stable Kununu review UUID
example
string
Required
Country code of the company: de, at, or ch
US
string
Required
Company slug where the review was originally observed
example
string
Required
Original review collection: employees or candidates
example
string
Optional
Company UUID. Optional; resolved from company_slug when omitted.
1234567890
boolean
Optional
Include detailed factor ratings when the review exists
true
Response Schema
Example response fields are illustrative; inspect the JSON before integrating.
Example response fields
Scan these fields before integrating.
meta
exists
review
status
success
{
"meta": {
"cached": false,
"confirmed": true,
"retryable": false,
"checked_at": "2026-07-13T20:00:00.000000Z"
},
"exists": true,
"review": {
"uuid": "4ff54c57-fffe-4bc0-a8f5-5b25082a4dac",
"score": 1,
"title": "Review title",
"displayStatus": "SHOW_FULL"
},
"status": "exists",
"success": true
}
Errors
Handle these documented responses before retrying or showing customer-facing failures.
Review not found
Kununu returned a valid empty exact-UUID result for the supplied scope.
{
"meta": {
"confirmed": true,
"retryable": false
},
"exists": false,
"review": null,
"status": "review_not_found",
"success": false
}
Upstream unavailable
Kununu failed, blocked, or limited the request. The review state is unknown.
{
"meta": {
"confirmed": false,
"retryable": true
},
"exists": null,
"review": null,
"status": "upstream_unavailable",
"success": false
}
Malformed upstream response
Kununu returned an unexpected payload or did not honor the UUID filter. The review state is unknown.
{
"meta": {
"confirmed": false,
"retryable": true
},
"exists": null,
"review": null,
"status": "malformed_upstream_response",
"success": false
}
Generate Code with AI
Copy a ready-made prompt with all the endpoint details, parameters, and example responses. Paste it into ChatGPT, Claude, or any AI assistant to instantly generate working code.