---
title: "Get employee skill proficiency ratings"
method: GET
path: "/hris/skill-proficiency-ratings"
tags: ["Unified HRIS API"]
---

# Get employee skill proficiency ratings

`GET /hris/skill-proficiency-ratings`

Retrieve all employee skill proficiency ratings.

Retrieve skill proficiency ratings on employees. Each row is one rating, differentiated by `rating_source` – the same employee and skill can have several rows (e.g. a `SELF` and an `EXTERNAL` rating).

Top level filters use AND, while individual filters use OR if they accept multiple arguments. That means filters will be resolved like this: `(id IN ids) AND (remote_id IN remote_ids)`

## Query parameters

- `cursor` string — An optional cursor string used for pagination. This can be retrieved from the `next` property of the previous page response.
- `page_size` integer — The number of results to return per page. Maximum is 250.
- `updated_after` string, date-time — Filter the entries based on the modification date in format `YYYY-MM-DDTHH:mm:ss.sssZ`. Returns records where either the record itself **OR** its nested data has been updated since this timestamp, even if the record's own `changed_at` field remains unchanged. If you want to track entry deletion, also set the `include_deleted=true` query parameter, because otherwise, deleted entries will be hidden. For more details, see [Understanding changed_at vs updated_after Behavior](https://docs.kombo.dev/ats/getting-started/fetching-data#understanding-changed_at-vs-updated_after-behavior). For this endpoint, `updated_after` matches when the returned record changed, or when related data changed as described below. | Path | Added/Removed | Linked Record | | --- | --- | --- | | `employee` | ✗ No | ✗ No | | `skill` | ✗ No | ✗ No | | `rating_provider` | ✗ No | ✗ No | _**Added/Removed**: Whether adding or removing entries from this list triggers an update (n/a for single records). **Linked Record**: Whether changes to the linked record itself trigger an update._
- `include_deleted` 'true' | 'false' — By default, deleted entries are not returned. Use the `include_deleted` query param to include deleted entries too.
- `ignore_unsupported_filters` 'true' | 'false' — When set to `true`, filters targeting fields not supported by this integration will be ignored instead of filtering out all results.
- `ids` string — Filter by a comma-separated list of IDs such as `222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3`.
- `remote_ids` string — Filter by a comma-separated list of remote IDs.
- `employee_ids` string — Filter by a comma-separated list of employee IDs.
- `skill_ids` string — Filter by a comma-separated list of skill IDs.

## Headers

- `X-Integration-Id` string, required

## Response `200`

GET /hris/skill-proficiency-ratings Positive response

- GetHrisSkillProficiencyRatingsPositiveResponse
  - `status` 'success', required
  - `data` object, required
    - `next` string, nullable, required — Cursor string that can be passed to the `cursor` query parameter to get the next page. If this is `null`, then there are no more pages.
    - `results` union[], required
      - union
        - object
          - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
          - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
          - `employee_id` string, required — The Kombo ID of the employee. Can be used to retrieve the employee from the `get employees` endpoint.
          - `skill_id` string, required — The Kombo ID of the skill. Can be used to retrieve the skill from the `get skills` endpoint.
          - `proficiency` union — The selected value on the scale. `null` when the skill is assigned to the employee but not rated. The scale itself lives on the skill.
            - object
              - …
            - object
              - …
          - `changed_at` string, date-time, required — The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
          - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `remote_data` object, nullable, required — Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
          - `custom_fields` object, nullable, required — A key-value store of fields not covered by the schema. [Read more](/custom-fields)
          - `integration_fields` object[], required — An array of selected passthrough integration fields. [Read more](/integration-fields)
            - `id` string, required — The globally unique ID of this object.
            - `key` string, required — The key of the field in the remote system.
            - `type` 'DEFAULT' | 'CUSTOM', required — - `DEFAULT`: static fields in the remote system. - `CUSTOM`: fields that are created/editable by the user.
            - `value` unknown
            - `label` string, nullable, required — The label of the field. (not always available)
          - `employee` object, required — The employee this rating belongs to.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `first_name` string, nullable, required — The employee’s first name.
            - `last_name` string, nullable, required — The employee’s last name.
            - `display_full_name` string, nullable, required — The employee’s full name, including any middle names. Not all HR systems provide an explicit display name, so we recommend falling back to `first_name` and `last_name`.
            - `work_email` string, nullable — The employee’s work email address. If the email address is invalid, we will set this to `null`.
            - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `skill` object, required — The skill this rating is for.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the skill, in the default locale of the remote system.
            - `proficiency_scale` union, required — The scale used to rate this skill, useful when writing a rating back. `null` when the skill has no scale.
              - …
          - `rating_source` 'EXTERNAL', required — Marks this as an externally-produced rating (e.g. from an assessment, labor-market enrichment, or inference engine). Carries `rating_provider_id` / `rating_provider` identifying the external provider that produced it.
          - `rating_provider_id` string, nullable, required — The Kombo ID of the external provider that produced the rating. `null` when the source is `EXTERNAL` but no provider was recorded.
          - `rating_provider` object, nullable, required — The external provider that produced the rating, embedded from `rating_provider_id`. `null` when no provider was recorded.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the provider.
        - object
          - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
          - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
          - `employee_id` string, required — The Kombo ID of the employee. Can be used to retrieve the employee from the `get employees` endpoint.
          - `skill_id` string, required — The Kombo ID of the skill. Can be used to retrieve the skill from the `get skills` endpoint.
          - `proficiency` union — The selected value on the scale. `null` when the skill is assigned to the employee but not rated. The scale itself lives on the skill.
            - object
              - …
            - object
              - …
          - `changed_at` string, date-time, required — The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
          - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `remote_data` object, nullable, required — Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
          - `custom_fields` object, nullable, required — A key-value store of fields not covered by the schema. [Read more](/custom-fields)
          - `integration_fields` object[], required — An array of selected passthrough integration fields. [Read more](/integration-fields)
            - `id` string, required — The globally unique ID of this object.
            - `key` string, required — The key of the field in the remote system.
            - `type` 'DEFAULT' | 'CUSTOM', required — - `DEFAULT`: static fields in the remote system. - `CUSTOM`: fields that are created/editable by the user.
            - `value` unknown
            - `label` string, nullable, required — The label of the field. (not always available)
          - `employee` object, required — The employee this rating belongs to.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `first_name` string, nullable, required — The employee’s first name.
            - `last_name` string, nullable, required — The employee’s last name.
            - `display_full_name` string, nullable, required — The employee’s full name, including any middle names. Not all HR systems provide an explicit display name, so we recommend falling back to `first_name` and `last_name`.
            - `work_email` string, nullable — The employee’s work email address. If the email address is invalid, we will set this to `null`.
            - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `skill` object, required — The skill this rating is for.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the skill, in the default locale of the remote system.
            - `proficiency_scale` union, required — The scale used to rate this skill, useful when writing a rating back. `null` when the skill has no scale.
              - …
          - `rating_source` 'SELF', required — Marks this as a self-assessed rating by the employee.
        - object
          - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
          - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
          - `employee_id` string, required — The Kombo ID of the employee. Can be used to retrieve the employee from the `get employees` endpoint.
          - `skill_id` string, required — The Kombo ID of the skill. Can be used to retrieve the skill from the `get skills` endpoint.
          - `proficiency` union — The selected value on the scale. `null` when the skill is assigned to the employee but not rated. The scale itself lives on the skill.
            - object
              - …
            - object
              - …
          - `changed_at` string, date-time, required — The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
          - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `remote_data` object, nullable, required — Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
          - `custom_fields` object, nullable, required — A key-value store of fields not covered by the schema. [Read more](/custom-fields)
          - `integration_fields` object[], required — An array of selected passthrough integration fields. [Read more](/integration-fields)
            - `id` string, required — The globally unique ID of this object.
            - `key` string, required — The key of the field in the remote system.
            - `type` 'DEFAULT' | 'CUSTOM', required — - `DEFAULT`: static fields in the remote system. - `CUSTOM`: fields that are created/editable by the user.
            - `value` unknown
            - `label` string, nullable, required — The label of the field. (not always available)
          - `employee` object, required — The employee this rating belongs to.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `first_name` string, nullable, required — The employee’s first name.
            - `last_name` string, nullable, required — The employee’s last name.
            - `display_full_name` string, nullable, required — The employee’s full name, including any middle names. Not all HR systems provide an explicit display name, so we recommend falling back to `first_name` and `last_name`.
            - `work_email` string, nullable — The employee’s work email address. If the email address is invalid, we will set this to `null`.
            - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `skill` object, required — The skill this rating is for.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the skill, in the default locale of the remote system.
            - `proficiency_scale` union, required — The scale used to rate this skill, useful when writing a rating back. `null` when the skill has no scale.
              - …
          - `rating_source` 'MANAGER', required — Marks this as a rating assessed by the employee’s manager.
        - object
          - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
          - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
          - `employee_id` string, required — The Kombo ID of the employee. Can be used to retrieve the employee from the `get employees` endpoint.
          - `skill_id` string, required — The Kombo ID of the skill. Can be used to retrieve the skill from the `get skills` endpoint.
          - `proficiency` union — The selected value on the scale. `null` when the skill is assigned to the employee but not rated. The scale itself lives on the skill.
            - object
              - …
            - object
              - …
          - `changed_at` string, date-time, required — The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
          - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `remote_data` object, nullable, required — Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
          - `custom_fields` object, nullable, required — A key-value store of fields not covered by the schema. [Read more](/custom-fields)
          - `integration_fields` object[], required — An array of selected passthrough integration fields. [Read more](/integration-fields)
            - `id` string, required — The globally unique ID of this object.
            - `key` string, required — The key of the field in the remote system.
            - `type` 'DEFAULT' | 'CUSTOM', required — - `DEFAULT`: static fields in the remote system. - `CUSTOM`: fields that are created/editable by the user.
            - `value` unknown
            - `label` string, nullable, required — The label of the field. (not always available)
          - `employee` object, required — The employee this rating belongs to.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `first_name` string, nullable, required — The employee’s first name.
            - `last_name` string, nullable, required — The employee’s last name.
            - `display_full_name` string, nullable, required — The employee’s full name, including any middle names. Not all HR systems provide an explicit display name, so we recommend falling back to `first_name` and `last_name`.
            - `work_email` string, nullable — The employee’s work email address. If the email address is invalid, we will set this to `null`.
            - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `skill` object, required — The skill this rating is for.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the skill, in the default locale of the remote system.
            - `proficiency_scale` union, required — The scale used to rate this skill, useful when writing a rating back. `null` when the skill has no scale.
              - …
          - `rating_source` 'EXPECTED', required — Marks this as the level expected of the employee for this skill.
        - object
          - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
          - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
          - `employee_id` string, required — The Kombo ID of the employee. Can be used to retrieve the employee from the `get employees` endpoint.
          - `skill_id` string, required — The Kombo ID of the skill. Can be used to retrieve the skill from the `get skills` endpoint.
          - `proficiency` union — The selected value on the scale. `null` when the skill is assigned to the employee but not rated. The scale itself lives on the skill.
            - object
              - …
            - object
              - …
          - `changed_at` string, date-time, required — The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.
          - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `remote_data` object, nullable, required — Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it.
          - `custom_fields` object, nullable, required — A key-value store of fields not covered by the schema. [Read more](/custom-fields)
          - `integration_fields` object[], required — An array of selected passthrough integration fields. [Read more](/integration-fields)
            - `id` string, required — The globally unique ID of this object.
            - `key` string, required — The key of the field in the remote system.
            - `type` 'DEFAULT' | 'CUSTOM', required — - `DEFAULT`: static fields in the remote system. - `CUSTOM`: fields that are created/editable by the user.
            - `value` unknown
            - `label` string, nullable, required — The label of the field. (not always available)
          - `employee` object, required — The employee this rating belongs to.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `first_name` string, nullable, required — The employee’s first name.
            - `last_name` string, nullable, required — The employee’s last name.
            - `display_full_name` string, nullable, required — The employee’s full name, including any middle names. Not all HR systems provide an explicit display name, so we recommend falling back to `first_name` and `last_name`.
            - `work_email` string, nullable — The employee’s work email address. If the email address is invalid, we will set this to `null`.
            - `remote_deleted_at` string, date-time, nullable, required — The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
          - `skill` object, required — The skill this rating is for.
            - `id` string, required — The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
            - `remote_id` string, required — The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
            - `name` string, nullable, required — The name of the skill, in the default locale of the remote system.
            - `proficiency_scale` union, required — The scale used to rate this skill, useful when writing a rating back. `null` when the skill has no scale.
              - …
          - `rating_source` unknown, required

## Other responses

- `default` — The standard error response with the error codes for the HRIS use case.

---

[API](https://skmtc.net/kombo/apis/kombo-api.md) · [All operations](https://skmtc.net/kombo/apis/kombo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kombo/kombo-api/revisions/1e45035b96d3/schema)
