# Kununu Employer Sitemap

Enumerate the full kununu employer universe through the public sitemap: letter buckets, page counts per bucket, and up to 300 employer profile links per page.

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

## 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 |
| `letter` | string | No | Letter bucket: 123, a-z, ae, oe, ue. Omit for the bucket index. |
| `page` | integer | No | Sub-page within the letter bucket (requires letter). Omit for the page count of the bucket. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/sitemap?country=de&letter=b&page=1"
```

## Example response

```json
{
    "success": true,
    "data": [
        {
            "name": "Example GmbH",
            "slug": "example-gmbh",
            "url": "https://www.kununu.com/de/example-gmbh"
        }
    ],
    "meta": {
        "pagination": {
            "currentPage": 1,
            "resultsPerPage": 300
        },
        "letter": "b",
        "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 | The requested sitemap bucket or page does not exist. |
| 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)
