> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Skill

> Get full skill detail

## 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.

<Note>
  **Scope required:** `skills:read` | **Rate limit:** 30 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/skills/{id}
```

### Example

```bash theme={null}
curl "https://api.mokaru.ai/v1/skills/clx1234" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="data" type="object">
  Skill detail

  <Expandable>
    <ResponseField name="id" type="string">Unique skill ID</ResponseField>
    <ResponseField name="name" type="string">Skill name</ResponseField>
    <ResponseField name="category" type="string">Skill category</ResponseField>
    <ResponseField name="level" type="string">Proficiency level</ResponseField>
    <ResponseField name="createdAt" type="string">ISO 8601 creation date</ResponseField>
    <ResponseField name="updatedAt" type="string">ISO 8601 last update date</ResponseField>
  </Expandable>
</ResponseField>

```json theme={null}
{
  "data": {
    "id": "clx1234...",
    "name": "TypeScript",
    "category": "Frontend",
    "level": "expert",
    "createdAt": "2026-01-10T10:00:00.000Z",
    "updatedAt": "2026-03-15T14:30:00.000Z"
  }
}
```
