# Kununu Company Details

Get detailed company information and statistics from Kununu.

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

## 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 | Yes | Country code (de, at, ch) |
| `company_slug` | string | Yes | Company slug (e.g., "bmwgroup", "sap-se") |
| `countryCode` | string | No | Alias for country (de, at, ch). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kununu/company-details?country=de&company_slug=bmwgroup"
```

## Example response

```json
{
    "company": []
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 401 | Unauthorized | API key is missing or invalid |
| 422 | Validation Error | One or more parameters failed validation |
| 404 | Not Found | Company not found on Kununu |
| 500 | Internal Server Error | Service temporarily unavailable, failed to fetch company details, or failed to parse company information |

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