# Kununu Similar Jobs

Get job postings similar to a given job posting. Returns an empty list when no similar postings exist in the given country.

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

## 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 |
| --- | --- | --- | --- |
| `job_id` | string | Yes | UUID of the job posting (from the jobs endpoint) |
| `country` | string | Yes | Country code: de (Germany), at (Austria), ch (Switzerland). Must match the posting's own country. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/similar-jobs?job_id=5ab3a865-486a-413b-be4a-96fef68247ce&country=ch"
```

## Example response

```json
{
    "success": true,
    "data": [
        {
            "id": "job-uuid",
            "title": "Senior Software Engineer",
            "url": "https://www.kununu.com/ch/job/job-uuid",
            "postedAt": "2026-03-01",
            "city": "Z\u00fcrich",
            "company": {
                "uuid": "company-uuid",
                "name": "Example AG"
            }
        }
    ],
    "meta": {
        "total": 1,
        "job_id": "job-uuid",
        "country": "ch",
        "cached": false,
        "cached_at": null
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 401 | Unauthorized | API key is missing or invalid |
| 422 | Validation Error | A required parameter is missing or invalid |
| 503 | Blocked By Kununu | Kununu returned anti-bot protection. This response is retryable and is not billed. |
| 500 | Internal Server Error | Service temporarily unavailable or unexpected error occurred. This response is not billed. |

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