Get Skill Tier 4
GET/api/skills/:idCopied!
Returns skill metadata and version summaries.
Pro plan required
Skill Registry is available on the Pro plan and higher.
Example
ts
const skill = await client.skills.get("SK1234567890ABCD");bash
youvico skill get --id SK1234567890ABCDbash
curl 'https://api.youvico.com/api/skills/SK1234567890ABCD' \
-H 'Authorization: Bearer YOUR_API_KEY'json
{
"data": {
"id": "SK1234567890ABCD",
"source": "WORKSPACE",
"name": "Review Helper",
"description": "Summarizes review context.",
"metadata": { "category": "review" },
"allowedTools": ["browser"],
"license": "MIT",
"default": { "id": "SV1234567890ABCD" },
"versions": [
{
"id": "SV1234567890ABCD",
"version": 1,
"note": "Initial public draft",
"createdAt": "2026-05-28T09:00:00.000Z"
}
]
}
}Request
Path
idstringrequired Skill ID
Response
Returns 200 OK.
dataobjectSkill
data.idstringSkill ID
Example: SK1234567890ABCD
data.sourcestringSkill source
Possible values: WORKSPACEYOUVICO_MANAGED
Example: WORKSPACE
data.namestringSkill name
Example: Review Helper
data.descriptionstringSkill description
Example: Summarizes review context.
data.metadataRecord<string, string>?String metadata
data.allowedToolsstring[]?Allowed tool identifiers
data.licensestring?Skill license
Example: MIT
data.defaultobject?Default version
data.default.idstringDefault skill version ID
Example: SV1234567890ABCD
data.versionsarrayPublished versions
data.versions[].idstringSkill version ID
Example: SV1234567890ABCD
data.versions[].versionnumberVersion number
Example: 1
data.versions[].notestring?Version note
Example: Initial public draft
data.versions[].createdAtstringVersion creation time
Example: 2026-05-28T09:00:00.000Z