# Kununu Single Review

Fetch a dedicated Kununu review page without paginating company reviews. Active reviews return basic review details. A visible Kununu unavailable-review tombstone returns a confirmed deleted state. Browser blocks and upstream failures return a retryable 503 and are not billed.

- **Documentation:** [https://scrappa.co/docs/kununu-api/kununu_review](https://scrappa.co/docs/kununu-api/kununu_review)
- **API group:** Kununu API
- **Endpoint:** `GET https://scrappa.co/api/kununu/review`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | string | Yes | Dedicated Kununu review URL from Germany, Austria, or Switzerland |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/review?url=https%3A%2F%2Fwww.kununu.com%2Fde%2Fcr3ate%2Fbewertung%2F846cb87d-fc15-4477-bd50-8d426ca910d6"
```

## Example response

```json
{
    "success": true,
    "status": "active",
    "exists": true,
    "data": {
        "uuid": "846cb87d-fc15-4477-bd50-8d426ca910d6",
        "country": "de",
        "company_slug": "cr3ate",
        "url": "https://www.kununu.com/de/cr3ate/bewertung/846cb87d-fc15-4477-bd50-8d426ca910d6",
        "company_name": "CR3ATE",
        "title": "Halten sich nicht an Absprachen",
        "score": 1.6,
        "recommended": false,
        "review_date": "Januar 2025",
        "employment": "Ex-Zeitarbeiter/in Hat bis 2024 f\u00fcr dieses Unternehmen in Schwentinental gearbeitet.",
        "content": {
            "positive": "P\u00fcnktliche Gehaltszahlung.",
            "negative": "Absprachen werden nicht eingehalten.",
            "suggestions": "Besser kommunizieren."
        }
    },
    "meta": {
        "upstream_status": 200,
        "duration_ms": 15234,
        "checked_at": "2026-07-20T10:00:00+00:00",
        "cached": false
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 503 | Temporarily Unavailable | The upstream service is temporarily unavailable. Please retry shortly. |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
