About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Employee
  • Introduction
  • Skills Assessment API
    • API Reference
      • Getting started
      • API Environment
      • Authentication Mechanism
      • Error Code
      • List timezones
    • Test
      • List all tests
      • Retrieve a test
      • Retrieve test settings
      • Update Test Settings
    • Test Invitations
      • Callback notification
      • Invite candidate
      • Invite candidate by test link
      • Reattempt Test
      • Cancel Invitation
    • Test Link
      • List all test links
    • Report
      • Retrieve candidate test report
      • Retrieve candidate test report in PDF
    • Callback API
      • Process Callbacks
      • Retrieve Invites
    • GDPR
      • GDPR Data Masking Service
    • Users
      • Get all business units
      • Create New User
      • Update User
      • Active/ Inactive User
  • Skills Intelligence API
    • Introduction
    • Authentication
    • Employee
      • List employees
        GET
      • Get Employee Skills by employeeId
        GET
      • Employee Enrollment
        POST
      • Update Employee Status
        PATCH
    • JobProfiles
      • Get All JobProfiles
      • Get JobProfile with Skills By JobProfileId
      • Create JobCode
    • Taxonomy
      • Get all Taxonomy Skills
    • CareerPath
      • Get Employee Career Path by employeeId
    • Account
      • Get Multichannel Validation Weightages
  1. Employee

Get Employee Skills by employeeId

GET
/employees/{employeeId}/skills-profile
Retrieves the complete skills profile for a specific employee identified by employeeId. This profile includes detailed information about each skill, proficiency levels based on different validation sources, experience duration, AI-inferred ratings, and skill gap analysis.

Request

Path Params

Header Params

Responses

🟢200OK
text/plain
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.skillsintelligence.imocha.io/employees/{employeeId}/skills-profile' \
--header 'x-api-key;'
Response Response Example
[
    {
        "skill": {
            "skillId": 0,
            "skillName": "string",
            "skillClassification": {
                "classificationId": 0,
                "classificationName": "string"
            }
        },
        "selfValidationScore": 0,
        "iMochaValidationScore": 0,
        "managerValidationScore": 0,
        "weightedProficiencyScore": 0,
        "multiRaterValidationScore": 0,
        "weightedAIInferenceScore": 0,
        "experienceInMonths": 0,
        "aiInferredRatings": [
            {
                "inferenceType": 0,
                "rating": 0,
                "talentAlteredRating": 0,
                "explanation": "string"
            }
        ],
        "isJobProfileSkill": true,
        "skillPriorirty": "string",
        "skillRequiredProficiency": 0,
        "skillGapInPercentage": 0
    }
]
Modified at 2025-08-19 13:30:26
Previous
List employees
Next
Employee Enrollment
Built with