Analyzes skill gaps across all employees in the organization. Returns missing skills per employee and org-wide recommendations. Admin only. Cached for 24 hours (use ?refresh=true to force refresh).
Request
Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET '/ai/skill-gap?refresh' \
--header'Authorization: Bearer <token>'
Responses
🟢200
application/json
Skill gap analysis
Body
Example
{"success":true,"data":{"gaps":[{"employeeName":"Jane Smith","role":"Frontend Engineer","missingSkills":["Testing","CI/CD","GraphQL"]},{"employeeName":"Bob Johnson","role":"Backend Engineer","missingSkills":["Kubernetes","AWS","Terraform"]}],"orgRecommendation":"Your team has strong frontend and backend fundamentals but lacks DevOps and cloud infrastructure skills. Consider organizing a 2-week training sprint on Docker, Kubernetes, and CI/CD pipelines."}}