added

Job Upskilling API: Introducing Jobs Recommendations Explanation

We are excited to introduce the Job Upskilling API, which replaces our previous Job Reasoning API released in 2018.

Jobs Recommendations Explanation

Jobs Recommendations Explanation

😍 Why it’s a big deal for HrFlow.ai users?

The Job Upskilling API is an explainable AI (XAI) solution that generates a SWOT matrix for candidates. This matrix helps candidates understand jobs recommendations by analyzing the skills gap between their profile and the job, alongside labor market best practices.


πŸ”§Β How does it work?

You can follow our Job Upskilling API Docs to start explaining jobs recommendations for candidates and employees.

You can also use python to make your first Job Upskilling API request:

import requests

url = 'https://api.hrflow.ai/v1/job/upskilling'
headers = {
    'X-API-KEY': 'ask_hdhdhhdhd',
    'X-USER-EMAIL': '[email protected]',
    'accept': 'application/json'
}
params = {
    'source_key': 'aaaa',
    'profile_key': 'bbb',
    'board_key': 'ccc',
    'job_key': 'dddd',
    'output_lang': 'en',
    'score': '0.9'
}

response = requests.get(url, headers=headers, params=params)
print(response.text)  # Print the response text to see the result


πŸ’‘Β Useful Links