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
      • Bulk Invite
      • Reattempt Test
      • Cancel Invitation
    • Test Link
      • List all test links
      • Create Test Link
      • Update Test Link
    • Report
      • Retrieve candidate test report
      • Retrieve candidate test report in PDF
      • Get Reports By TestId
      • Get All Reports
    • Callback API
      • Process Callbacks
      • Retrieve Invites
    • GDPR
      • GDPR Data Masking Service
    • Users
      • Get all business units
      • Create New User
      • Update User
      • Active/ Inactive User
    • Tara Interview API
      • Introduction
      • Get All Interviews
      • Schedule Interview
      • Get Detailed Report
      • Get All Reports
  • Skills Intelligence API
    • Introduction
    • Authentication
    • Employee
      • List employees
        GET
      • Get Employee Skills by employeeId
        GET
      • Employee Enrollment
        POST
      • Get Employee Certificates
        GET
      • Update Employee Status
        PATCH
      • Get Employee Assessment Report
        GET
      • Upload Certificate for Employee
        POST
      • Upload Resume for Employee
        POST
      • List Employees with Skills Profile
        GET
      • Assign Learning to Employee
        POST
      • Get Employee Skill Gap
        GET
    • 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 Rubric Levels
      • Get Multichannel Validation Weightages
    • Learning
      • Create Learning Resources
      • Get all Learning Resources
    • Certificates
      • Create certificate with skills
      • Get all Certificates
  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.
AIInferenceType
Represents the source of AI-based skill inference performed by iMocha.
It indicates from which type of uploaded document the system derived the skill rating.
Possible Values
ValueNameDescription
1CV/ResumeSkill rating inferred by iMocha based on the employee’s uploaded CV/Resume. The system analyzes the resume content (experience, roles, technologies, etc.) to estimate skill proficiency.
2CertificateSkill rating inferred by iMocha based on certificates uploaded by the employee. The system evaluates certifications to derive relevant skill levels.
3LearningMaterialSkill rating inferred by iMocha based on learning materials or courses completed by the employee, such as training content or study resources.

Request

Path Params

Query Params

Header Params

Responses

🟢200OK
text/plain
OK
Bodytext/plain

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.skillsintelligence.imocha.io/employees/{employeeId}/skills-profile?includeProficiencyAudit=false' \
--header 'x-api-key;'
Response Response Example
[
  {
    "skill": {
      "skillId": 0,
      "skillName": "string",
      "taxonomySkillExternalId": "string",
      "modifiedOn": "2025-10-01T11:34:34.103Z",
      "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 2026-08-24 05:24:48
Previous
List employees
Next
Employee Enrollment
Built with