# Kununu Job Detail

Fetch a public Kununu job posting and return the full structured description, salary ranges, company satisfaction scores, similar jobs, and page metadata when they are available on the listing. Both the canonical /de/job/{id} URL shape and legacy job-postings links are accepted.

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

## 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 | Public Kununu job posting URL (e.g. https://www.kununu.com/de/job/5ab3a865-486a-413b-be4a-96fef68247ce) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/job?url=https%3A%2F%2Fwww.kununu.com%2Fde%2Fjob%2F5ab3a865-486a-413b-be4a-96fef68247ce"
```

## Example response

```json
{
    "success": true,
    "data": {
        "id": "5ab3a865-486a-413b-be4a-96fef68247ce",
        "url": "https://www.kununu.com/de/job/5ab3a865-486a-413b-be4a-96fef68247ce",
        "title": "Senior Software Engineer",
        "company": {
            "name": "Example GmbH",
            "uuid": "company-uuid",
            "slug": "example-gmbh",
            "score": 4.1,
            "isTopCompany": false,
            "industryId": 6,
            "website": "https://example.com",
            "countryCode": "de"
        },
        "description_html": "<div><p>Full Kununu description</p></div>",
        "description_sections": {
            "companyDescription": {
                "title": null,
                "content": "<div><p>Full Kununu description</p></div>"
            }
        },
        "contact_person": {
            "name": "Jane Recruiter",
            "email": "jane@example.com",
            "phone": "+49 30 123456"
        },
        "postedAt": "2026-07-01",
        "activeUntil": "2027-07-01",
        "city": "Berlin",
        "addressRegion": "Berlin",
        "postCode": "10115",
        "street": "Examplestr. 1",
        "employmentTypes": [
            "JOB_EMPLOYMENT_FULLTIME"
        ],
        "remoteOptions": [
            "FULL_REMOTE"
        ],
        "salary": null,
        "industrySalary": {
            "aliases": [
                "Softwareentwickler"
            ],
            "countryCode": "de",
            "currency": "EUR",
            "jobTitle": "Software Engineer",
            "range": {
                "average": 68000,
                "lowerBound": 52000,
                "upperBound": 90000,
                "numberOfDataPoints": 1234
            }
        },
        "kununuJobTitle": {
            "id": 12345,
            "groupId": 678,
            "title": "Softwareentwickler:in"
        },
        "application": {
            "type": "url",
            "url": "https://example.com/apply"
        },
        "satisfaction": {
            "recommendationRate": {
                "percentage": 72,
                "totalReviews": 100,
                "recommendedTotalReviews": 72,
                "notRecommendedTotalReviews": 28
            },
            "roundedScore": 4,
            "score": 4.1,
            "totalReviews": 150
        },
        "source": "kununu",
        "paidType": "paid",
        "externalJobId": "ext-123",
        "discipline": 1008,
        "industryId": 6,
        "status": "active",
        "indexationRules": {
            "index": true,
            "canonical": "de/job/job-uuid"
        },
        "similarJobs": [],
        "nextJobId": "next-job-uuid"
    },
    "meta": {
        "url": "https://www.kununu.com/de/job/5ab3a865-486a-413b-be4a-96fef68247ce",
        "duration_ms": 123.45,
        "scraped_at": "2026-02-01T00:00:00.000Z",
        "cached": false,
        "cached_at": null
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 401 | Unauthorized | API key is missing or invalid |
| 422 | Validation Error | The url parameter must be a public Kununu job posting URL |
| 404 | Job Not Found | The Kununu job posting was not found or is no longer available |
| 503 | Blocked By Kununu | Kununu returned anti-bot protection for the job detail page |
| 500 | Internal Server Error | Service temporarily unavailable or failed to process the job detail page |

## 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)
