Documentation Index
Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/skills/{skill_id}
Retrieves the details of a single skill by ID.
Path parameters
| Parameter | Type | Required | Description |
|---|
skill_id | string | Yes | Skill unique identifier |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Example request
curl -X GET https://openapi.qoder.sh/api/v1/cloud/skills/skill_019e3bba474b73cfaf19eae9b5f5e66d \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 200 OK
{
"id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
"type": "skill",
"name": "test-skill-api-doc",
"description": "A test skill for API documentation",
"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 |
|---|
id | string | Skill unique identifier with the skill_ prefix |
type | string | Always "skill" |
name | string | Skill name |
description | string | Skill description |
skill_type | string | Skill type: custom or prebuilt |
status | string | Status: active or deleted |
version | integer | Current version number |
content_size | integer | Size of the zip content in bytes |
content_sha256 | string | SHA-256 hash of the content |
metadata | object | Custom metadata |
created_at | string | Creation time (ISO 8601) |
updated_at | string | Last update time (ISO 8601) |
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Skill does not exist or has been deleted: “Skill ‘{skill_id}’ was not found.” |
See Errors for the full error envelope.