Skip to main content
Versions

Download skill version content

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

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>

Path parameters

ParameterTypeRequiredDescription
skill_idstringYesSkill unique identifier
versionstringYesVersion identifier. Only numeric timestamps are accepted (same rules as Get a skill version)

Example request

curl -X GET "https://api.qoder.com/api/v1/cloud/skills/skill_019e3bba474b73cfaf19eae9b5f5e66d/versions/1759178010641129/content" \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN" \
  -o my-custom-skill.zip

Response

HTTP 200 OK — the response body is a zip binary stream, not JSON.
Response headerValue
Content-Typeapplication/zip
Content-Dispositionattachment; filename="..."
Content-LengthZip file size in bytes
The zip contains a <name>/ top-level directory (the skill name of that version), for example:
my-custom-skill/
├── SKILL.md
└── templates/
    └── report.md

Errors

HTTPTypeTrigger
400invalid_request_errorNon-numeric version (including latest)
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorSkill does not exist, or the version does not exist / has been deleted
See Errors for the full error envelope.