Return the paginated list of all versions of a skill, newest first.
GET /api/v1/cloud/skills/{skill_id}/versions
Returns the paginated list of all versions of the specified skill, ordered by version descending (newest first).
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
skill_id | string | Yes | Skill unique identifier |
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of records per page. Default 20, maximum 1000 |
page | string | No | Forward cursor; pass the next_page value from the previous response |
Example request
Example response
HTTP 200 OK
Response fields
| Field | Type | Description |
|---|---|---|
data | array | Array of Skill version objects, ordered by version descending |
has_more | boolean | Whether more records are available; when true, use next_page as the next page's page value |
next_page | string | null | Forward cursor for the next page; pass as page when has_more is true |
| 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 |
content_size | integer | ⚠️ Deprecated: size of the version's zip content in bytes (no replacement; will be removed) |
content_sha256 | string | ⚠️ Deprecated: SHA-256 hash of the version's content (no replacement; will be removed) |
status | string | ⚠️ Deprecated: version status active (no replacement; will be removed) |
updated_at | string | ⚠️ Deprecated: version last-update time (versions are immutable; use created_at instead) |
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Skill does not exist or is no longer accessible |
Notes
- Each version is an immutable, complete content snapshot appended via Create a skill version.