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
      • 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 Employee Skills by employeeId
      • Employee Enrollment
      • Update Employee Status
    • 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 Multichannel Validation Weightages
  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
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.skillsintelligence.imocha.io/taxonomy?SearchText&PageNumber=1&PageSize=50' \
--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 2025-07-08 07:15:39
Previous
Create JobCode
Next
Get Employee Career Path by employeeId
Built with