Skip to main content
GET
/
v1
/
skills
/
{id}
Get Skill
curl --request GET \
  --url https://api.mokaru.ai/v1/skills/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "category": "<string>",
    "level": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
}

Overview

The Get Skill endpoint returns the full details of a specific skill. Common use cases:
  • Skill verification - check the details and proficiency level of a specific skill.
  • Resume customization - pull skill details to include on a targeted resume.
  • Profile review - review skill categorization before updating.
Scope required: skills:read | Rate limit: 30 requests/min

Request

GET /v1/skills/{id}

Example

curl "https://api.mokaru.ai/v1/skills/clx1234" \
  -H "Authorization: Bearer mk_your_key"

Response

data
object
Skill detail
{
  "data": {
    "id": "clx1234...",
    "name": "TypeScript",
    "category": "Frontend",
    "level": "expert",
    "createdAt": "2026-01-10T10:00:00.000Z",
    "updatedAt": "2026-03-15T14:30:00.000Z"
  }
}