Skip to main content

Overview

The Employee Reviews API returns employee review metrics for a given company. Pass a company website or company UUID in the company query parameter. Each result includes an overview object with overall employee rating, business outlook, CEO approval, recommendation score, compensation and benefits rating, culture and values rating, diversity and inclusion rating, senior management rating, and work-life balance rating.

Endpoint Details

  • Method: GET
  • Endpoint: /v1/companies/employee-reviews
  • Base URL: https://api.akta.pro

Authentication

Pass your API key in the x-api-key request header.

Request

Query Parameters

string
required
Company website or company UUID. Example: canva.com or 3fa85f64-5717-4562-b3fc-2c963f66afa6. Company UUIDs can be obtained from the Company Search API.
integer
Maximum number of results to return. Default: 10. Max: 100.
integer
Number of results to skip. Default: 0.

Response

Successful Response Fields

Returns a JSON object with the following structure:
string
Request status. Returns success or error.
array
Array of employee review objects.
object
Pagination metadata for the returned result set.

Employee Review Object Fields

object
Employee review overview metrics.

Overview Object Fields

float
Overall employee rating on a 0-5 scale.
float
Percentage positive about business outlook on a 0-1 scale.
float
Percentage who approve of the CEO on a 0-1 scale.
float
Percentage who would recommend the company on a 0-1 scale.
float
Compensation and benefits rating on a 0-5 scale.
float
Culture and values rating on a 0-5 scale.
float
Diversity and inclusion rating on a 0-5 scale.
float
Senior management rating on a 0-5 scale.
float
Work-life balance rating on a 0-5 scale.

Pagination Object Fields

integer
Total number of matching results.
integer
Maximum number of results returned in the response.
integer
Number of results skipped before the current response.

Rating Scale Notes

business_outlook_rating, ceo_rating, and recommend_to_friend_rating are returned on a 0-1 scale. All other ratings are returned on a 0-5 scale.

Example Response

Error Responses

401 Unauthorized

Returned when the API key is missing or invalid.

422 Unprocessable Entity

Returned when the required company identifier is missing.

404 Company Not Found

Returned when no company matches the provided input.

500 Internal Server Error

Returned when an unexpected server error occurs.

title: “Employee Reviews”