> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /kununu/companies/reviews

> Get Kununu (kununu.com) employee reviews for a company by alias or profile URL

**Price:** 10 credits per 20 results

**⚠️ Common errors:** 412: Company not found



## OpenAPI

````yaml /openapi/reviews-software-employer.json post /api/kununu/companies/reviews
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/kununu/companies/reviews:
    post:
      tags:
        - /kununu
      summary: /kununu/companies/reviews
      description: >-
        Get Kununu (kununu.com) employee reviews for a company by alias or
        profile URL


        **Price:** 10 credits per 20 results


        **⚠️ Common errors:** 412: Company not found
      operationId: __api_kununu_companies_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KununuCompaniesReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KununuReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KununuCompaniesReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
          pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
        count:
          type: integer
          minimum: 1
        country:
          $ref: '#/components/schemas/KununuCountry'
          default: de
      type: object
      required:
        - company
        - count
    KununuReview:
      properties:
        '@type':
          type: string
          default: KununuReview
        id:
          type: string
        score:
          anyOf:
            - type: number
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        recommended:
          anyOf:
            - type: boolean
            - type: 'null'
        is_former:
          anyOf:
            - type: boolean
            - type: 'null'
        display_status:
          anyOf:
            - type: string
            - type: 'null'
        ratings:
          items:
            $ref: '#/components/schemas/KununuReviewRating'
          type: array
          default: []
        texts:
          items:
            $ref: '#/components/schemas/KununuReviewText'
          type: array
          default: []
        company:
          anyOf:
            - $ref: '#/components/schemas/KununuReviewCompany'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KununuCountry:
      type: string
      enum:
        - de
        - at
        - ch
    KununuReviewRating:
      properties:
        '@type':
          type: string
          default: KununuReviewRating
        id:
          type: string
        score:
          anyOf:
            - type: number
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    KununuReviewText:
      properties:
        '@type':
          type: string
          default: KununuReviewText
        id:
          type: string
        text:
          type: string
      type: object
      required:
        - id
        - text
    KununuReviewCompany:
      properties:
        '@type':
          type: string
          default: KununuReviewCompany
        uuid:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````