# Kununu Salary

Get salary statistics for a job title: averages, ranges, career paths, education levels, and top cities. The free-text title is resolved to the closest matching kununu job title.

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

## 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 |
| --- | --- | --- | --- |
| `country` | string | No | Country code: de (Germany), at (Austria), ch (Switzerland). Default: de |
| `job_title` | string | Yes | Job title to look up (e.g., "Softwareentwickler"). Resolved to the closest match. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/salary?country=de&job_title=Softwareentwickler"
```

## Example response

```json
{
    "success": true,
    "data": {
        "jobTitle": {
            "title": "Softwareentwickler:in",
            "stats": {
                "average": 68000
            }
        },
        "careerPaths": [],
        "educationLevels": [],
        "caveat": "Some deeper salary breakdowns require a kununu member login and may be absent."
    },
    "meta": {
        "resolution": {
            "term": "Softwareentwickler",
            "matchedTitle": "Softwareentwickler:in",
            "slug": "softwareentwicklerin",
            "id": 123
        },
        "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 |
| 404 | Not Found | No salary data found for the requested job title. |
| 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)
