Overview
The Create Skill endpoint lets you add a new skill to your Mokaru account.
Common use cases:
- AI agent skill extraction - automatically add skills extracted from a job description or resume.
- Profile enrichment - add newly acquired skills to your career profile.
- Bulk import - add skills from an external source or assessment platform.
Scope required: skills:write | Rate limit: 20 requests/min
Request
Body Parameters
Skill name (max 100 characters)
Skill category, e.g. “Frontend”, “Backend”, “Design” (max 100 characters)
Proficiency level. One of: beginner, intermediate, advanced, expert
Example
curl -X POST "https://api.mokaru.ai/v1/skills" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "TypeScript",
"category": "Frontend",
"level": "expert"
}'
Response
Whether the skill was created
The new skill’s unique ID
{
"success": true,
"id": "clx1234..."
}