Retrieves the details of a single Skill by ID.
Request headers
|
Header |
Required |
Description |
|
|
Yes |
Bearer PAT — see |
Path parameters
|
Parameter |
Type |
Required |
Description |
|
|
string |
Yes |
Unique Skill identifier, prefixed with |
Example request
curl -X GET "https://api.qoder.com.cn/api/v1/cloud/skills/skill_019e3bba474b73cfaf19eae9b5f5e66d" \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 200 OK
{
"id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
"type": "skill",
"name": "my-custom-skill",
"description": "Custom Skill example",
"skill_type": "custom",
"status": "active",
"version": 1,
"content_size": 309,
"content_sha256": "f253cb7d35790025f85917c0c239422cff1de067d00278db8897c585a3f28d94",
"metadata": {},
"created_at": "2026-05-18T15:35:24.248164Z",
"updated_at": "2026-05-18T15:35:24.248164Z"
}
Response fields
|
Field |
Type |
Description |
|
|
string |
Unique Skill identifier, prefixed with |
|
|
string |
Resource type. Always |
|
|
string |
Skill name. |
|
|
string |
Skill description. |
|
|
string |
Skill type: |
|
|
string |
Skill status. Currently always |
|
|
integer |
Current version number, starting at 1. |
|
|
integer |
Zip content size in bytes. |
|
|
string |
SHA-256 hash of the zip content. |
|
|
object |
User-defined metadata. |
|
|
string |
Creation timestamp (ISO 8601). |
|
|
string |
Last-updated timestamp (ISO 8601). |
Errors
|
HTTP |
Type |
Trigger |
|
401 |
|
Missing or invalid authentication token. |
|
404 |
|
Skill does not exist or has been deleted. |
For the full error envelope, see Errors.