cURL
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>" } }
Get full skill detail
skills:read
GET /v1/skills/{id}
curl "https://api.mokaru.ai/v1/skills/clx1234" \ -H "Authorization: Bearer mk_your_key"
Show child attributes
{ "data": { "id": "clx1234...", "name": "TypeScript", "category": "Frontend", "level": "expert", "createdAt": "2026-01-10T10:00:00.000Z", "updatedAt": "2026-03-15T14:30:00.000Z" } }
Was this page helpful?