Skip to content

Get Version Tier 4

GET/api/skill-versions/:idCopied!

Returns the rendered markdown snapshot for a skill version.

Pro plan required

Skill Registry is available on the Pro plan and higher.

Example

ts
const version = await client.skillVersions.get("SV1234567890ABCD");
bash
youvico skill-version get --id SV1234567890ABCD
bash
curl 'https://api.youvico.com/api/skill-versions/SV1234567890ABCD' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": {
    "markdown": "---\nname: Review Helper\ndescription: Summarizes review context.\n---\n\n# Review Helper\n\nCheck revisions."
  }
}

Request

Path

idstringrequired
Skill version ID

Response

Returns 200 OK.

dataobject
Skill version
data.markdownstring
Rendered markdown snapshot