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

# Output Response - Skill Enrichment API

<Danger>
  **The Skill Enrichment API is now fully removed**

  This endpoint was removed in our April 2025 (v30.0) Release and is no longer available. This page is retained for historical documentation purposes.

  For more information, please see our [April 2025 Release Notes (v30.0)](/changelog/april-2025-release-notes-v300).
</Danger>

## Response Data Structure

Here is the structure of an example response from the Skill Enrichment API:

```json JSON theme={null}
{
  "cleaned_skill": "ai",
  "similar_skills": [
    "machine learning",
    "artificial intelligence",
    "deep learning",
    "data science",
    "iot"
  ],
  "relevant_job_titles": [
    "data scientist",
    "software engineer",
    "senior data scientist",
    "chief technology officer",
    "senior software engineer"
  ]
}
```

## Response Fields

### `cleaned_skill`

| Type     | Description                                                                                       |
| :------- | :------------------------------------------------------------------------------------------------ |
| `String` | The skill that matches the API input `skill` after passing it through our internal skill cleaner. |

<br />

### `similar_skills`

| Type             | Description                                                                                                                |
| :--------------- | :------------------------------------------------------------------------------------------------------------------------- |
| `Array [String]` | A list of to five of the most contextually-similar skills to the `cleaned_skill`, determined using our global resume data. |

<br />

### `relevant_job_titles`

| Type             | Description                                                                                                                       |
| :--------------- | :-------------------------------------------------------------------------------------------------------------------------------- |
| `Array [String]` | A list of up to five of the most contextually-similar job titles to the `cleaned_skill`, determined using our global resume data. |


## Related topics

- [Skill Enrichment API](/docs/skill-enrichment-api.md)
- [Reference - Skill Enrichment API](/docs/reference-skill-enrichment-api.md)
- [Output Response - Job Title Enrichment API](/docs/output-response-job-title-enrichment-api.md)
- [Output Response - Autocomplete API](/docs/output-response-autocomplete-api.md)
- [Input Parameters - Skill Enrichment API](/docs/input-parameters-skill-enrichment-api.md)
