About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Taxonomy
  • 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 Employee Skills by employeeId
      • Employee Enrollment
      • Get Employee Certificates
      • Update Employee Status
      • Get Employee Assessment Report
      • Upload Certificate for Employee
      • Upload Resume for Employee
      • List Employees with Skills Profile
      • Assign Learning to Employee
      • Get Employee Skill Gap
    • JobProfiles
      • Get All JobProfiles
      • Get JobProfile with Skills By JobProfileId
      • Create JobCode
    • Taxonomy
      • Get all Taxonomy Skills
        GET
    • 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. Taxonomy

Get all Taxonomy Skills

GET
/taxonomy
Fetches a paginated list of skills from the enterprise-wide taxonomy system, which standardizes skill definitions across the organization. Each entry includes domain hierarchy (domain → subdomain → skill cluster), skill metadata, classification, and tags.

Request

Query Params

Header Params

Responses

🟢200OK
text/plain
OK
Bodytext/plain

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.skillsintelligence.imocha.io/taxonomy?SearchText=undefined&PageNumber=1&PageSize=50&LastModifiedOn=2026-04-23T01%3A45%3A53Z&TaxonomySkillIds=undefined&IncludeTaxonomySkillTags=undefined&IncludeDescription=undefined&IncludeSkillRubric=undefined' \
--header 'x-api-key;'
Response Response Example
{
    "items": [
        {
            "taxonomySkillId": 0,
            "externalId": "string",
            "domain": {
                "id": 0,
                "name": "string"
            },
            "subdomain": {
                "id": 0,
                "name": "string"
            },
            "skillCluster": {
                "id": 0,
                "name": "string"
            },
            "skillClassification": {
                "classificationId": 0,
                "classificationName": "string"
            },
            "skill": {
                "id": 0,
                "name": "string",
                "description": "string"
            },
            "displayName": "string",
            "description": "string",
            "isCritical": true,
            "taxonomySkillTags": [
                {
                    "taxonomySkillTagId": 0,
                    "tagName": "string"
                }
            ]
        }
    ],
    "pageNumber": 0,
    "totalPages": 0,
    "totalCount": 0,
    "hasPreviousPage": true,
    "hasNextPage": true
}
Modified at 2026-05-05 05:02:39
Previous
Create JobCode
Next
Get Employee Career Path by employeeId
Built with