Kununu Company Details
Get comprehensive company details from Kununu including basic information, ratings, social media profiles, awards, benefits, and structured data. This endpoint scrapes detailed company information from Kununu profile pages.
Endpoint
GET
/api/kununu_company_details
Parameters
country
string
Required
Two-letter ISO country code (e.g., "de" for Germany, "at" for Austria)
company_slug
string
Required
The company slug from the Kununu URL (e.g., "siemens" from https://www.kununu.com/de/siemens)
Request Examples
<?php\n\n$curl = curl_init();\n\ncurl_setopt_array($curl, [\n CURLOPT_URL => "https://app.scrappa.co/api/kununu/company-details?country=de&company_slug=siemens",\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => "",\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 30,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_CUSTOMREQUEST => "GET",\n CURLOPT_HTTPHEADER => [\n "x-api-key: YOUR_API_KEY_HERE"\n ],\n]);\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n echo "cURL Error #:" . $err;\n} else {\n echo $response;\n}
const options = {\n method: "GET",\n headers: {\n "x-api-key": "YOUR_API_KEY_HERE"\n }\n};\n\nfetch("https://app.scrappa.co/api/kununu/company-details?country=de&company_slug=siemens", options)\n .then(response => {\n if (!response.ok) {\n throw new Error(`HTTP error! status: ${response.status}`);\n }\n return response.json();\n })\n .then(data => console.log(data))\n .catch(error => console.error("Error:", error));
import requests\n\nurl = "https://app.scrappa.co/api/kununu/company-details"\nparams = {\n "country": "de",\n "company_slug": "siemens"\n}\nheaders = {\n "x-api-key": "YOUR_API_KEY_HERE"\n}\n\ntry:\n response = requests.get(url, params=params, headers=headers, timeout=30)\n response.raise_for_status()\n print(response.json())\nexcept requests.exceptions.RequestException as e:\n print(f"Error: {e}")
Response Schema
[
{
"title": "JSON Results",
"description": "Comprehensive company information including basic details, ratings, social media, and structured data",
"json_sample": {
"data": {
"ratings": {
"overall_score": 3.8,
"total_reviews": 5800,
"employee_reviews": 5472,
"applicant_reviews": 328,
"recommendation_rate": 86
},
"basic_info": {
"city": "M\u00fcnchen",
"name": "Siemens AG",
"uuid": "a1b2471b-40a3-4d19-a847-9b0f96b48e60",
"country": "de",
"website": "https://siemens.de/karriere",
"industry": 12,
"description": "Company description from meta tags"
},
"social_media": {
"facebook": {
"url": "https://www.facebook.com/SiemensCareers",
"handle": "SiemensCareers"
},
"linkedin": {
"url": "https://www.linkedin.com/company/siemens",
"handle": "siemens"
}
}
},
"success": true
}
}
]
Try It Live
Test this endpoint in our interactive playground with real data.
Open in Playground