TalentOS API
Github
Talent OS
  1. AI
  • Auth
    • Register a new organization
      POST
    • Login as organization admin
      POST
    • Login as employee
      POST
    • Change employee password
      POST
  • Employees
    • List all employees
      GET
    • Create a new employee
      POST
    • Get my profile
      GET
    • Get my productivity score
      GET
    • Get employee by ID
      GET
    • Update employee
      PUT
    • Delete employee
      DELETE
    • Get employee productivity score
      GET
  • Tasks
    • List all tasks
      GET
    • Create a new task
      POST
    • Get my tasks
      GET
    • Get task by ID
      GET
    • Update task
      PUT
    • Delete task
      DELETE
    • Update task status
      PATCH
    • Update task transaction hash
      PATCH
  • Dashboard
    • Get dashboard statistics
    • Get productivity leaderboard
    • Get recent activity
  • AI
    • AI HR assistant chat
      POST
    • Organization skill gap analysis
      GET
    • My personal skill gap analysis
      GET
    • Get daily AI insight
      GET
    • Smart task assignment recommendation
      POST
    • Extract skills from resume PDF
      POST
  • Schemas
    • CreateEmployeeRequest
    • UpdateEmployeeRequest
    • CreateTaskRequest
    • UpdateTaskRequest
    • AuthResponse
    • Employee
    • Task
Github
Talent OS
  1. AI

Extract skills from resume PDF

POST
/ai/extract-skills
Upload a PDF resume and extract skills, name, role, and a professional summary using AI.
Accepts multipart/form-data with a resume field. Max file size: 5 MB. Any authenticated user.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params multipart/form-dataRequired

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 POST '/ai/extract-skills' \
--header 'Authorization: Bearer <token>' \
--form 'resume=@""'

Responses

🟢200
application/json
Extracted skills
Body

Example
{
    "success": true,
    "data": {
        "skills": [
            "TypeScript",
            "React.js",
            "Node.js",
            "PostgreSQL",
            "Docker",
            "AWS",
            "REST APIs",
            "GraphQL",
            "Git",
            "Agile"
        ],
        "name": "Jane Smith",
        "role": "Senior Full Stack Developer",
        "summary": "Experienced full-stack developer with 5+ years building scalable web applications using TypeScript, React, and Node.js."
    }
}
🟠400
Modified at 2026-02-22 18:59:05
Previous
Smart task assignment recommendation
Next
CreateEmployeeRequest
Built with