added

Profile Upskilling API: Introducing Profiles Recommendations Explanation

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

Profile Upskilling API Results

Profile Upskilling API Results


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

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


🔧 How does it work?

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

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

import requests

url = 'https://api.hrflow.ai/v1/profile/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