Download the content zip archive of a specific skill version.
GET /api/v1/cloud/skills/{skill_id}/versions/{version}/content
Returns the complete content of the specified version directly as zip binary data.
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 identifier. Only numeric timestamps are accepted (same rules as Get a skill version) |
Example request
Response
HTTP 200 OK — the response body is a zip binary stream, not JSON.
| Response header | Value |
|---|---|
Content-Type | application/zip |
Content-Disposition | attachment; filename="..." |
Content-Length | Zip file size in bytes |
<name>/ top-level directory (the skill name of that version), for example:
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 |