Retrieve a single skill version by its version identifier.
GET /api/v1/cloud/skills/{skill_id}/versions/{version}
Retrieves the details of a single skill version by its version identifier.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
skill_id | string | Yes | Skill unique identifier |
version | string | Yes | Version number; numeric timestamps only |
Example request
Example response
HTTP 200 OK
Response fields
The response is a Skill version object.
| Field | Type | Description |
|---|---|---|
id | string | Version unique identifier |
type | string | Always "skill_version" |
skill_id | string | Owning Skill ID |
version | string | Version identifier |
name | string | name from this version's SKILL.md frontmatter |
description | string | description from this version's SKILL.md frontmatter |
directory | string | Skill directory name |
created_at | string | Version creation time |
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | Non-numeric version (including latest) |
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Skill does not exist, or the version does not exist / has been deleted |