# Kununu Profiles

Get company profiles from Kununu.

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

## 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 |
| --- | --- | --- | --- |
| `page` | integer | No | Page number for pagination (default: 1) |
| `countries` | array | No | Country codes filter (de, at, ch) |
| `industry` | integer | No | Industry ID filter (1-44) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/profiles?page=1"
```

## Example response

```json
{
    "success": true,
    "data": [
        {
            "uuid": "company-uuid",
            "name": "Example Company",
            "slug": "example-company",
            "url": "https://www.kununu.com/de/example-company",
            "logo": "https://example.com/logo.png",
            "industry": 1,
            "searchImage": "https://example.com/search-image.jpg",
            "location": {
                "city": "Munich",
                "countryCode": "de"
            },
            "ratings": {
                "overall": 4.2,
                "rounded": 4
            },
            "reviewCount": 150,
            "totalJobs": 25,
            "isTopCompany": true,
            "benefits": []
        }
    ],
    "meta": {
        "pagination": {
            "currentPage": 1,
            "totalPages": 10,
            "resultsStart": 0,
            "resultsEnd": 20,
            "totalResults": 200
        },
        "duration_ms": 123.45
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 401 | Unauthorized | API key is missing or invalid |
| 422 | Validation Error | One or more parameters failed validation |
| 404 | Not Found | Requested page exceeds the available pages |
| 500 | Internal Server Error | Service temporarily unavailable or failed to fetch data from Kununu API |

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