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}
ID を指定して単一の Skill の詳細情報を取得します。
パスパラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|
skill_id | string | はい | Skill の一意識別子 |
ヘッダー
| ヘッダー | 必須 | 説明 |
|---|
| Authorization | はい | Bearer $QODER_PAT |
リクエスト例
curl -X GET https://openapi.qoder.sh/api/v1/cloud/skills/skill_019e3bba474b73cfaf19eae9b5f5e66d \
-H "Authorization: Bearer $QODER_PAT"
レスポンス例
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"
}
レスポンスフィールド
| フィールド | 型 | 説明 |
|---|
id | string | Skill 一意識別子、形式 skill_* |
type | string | リソースタイプ、固定値 "skill" |
name | string | Skill 名 |
description | string | Skill の説明 |
skill_type | string | Skill タイプ:custom または prebuilt |
status | string | 状態:active または deleted |
version | integer | 現在のバージョン番号 |
content_size | integer | zip ファイル内容サイズ(バイト) |
content_sha256 | string | 内容の SHA-256 ハッシュ値 |
metadata | object | カスタムメタデータ |
created_at | string | 作成時刻(ISO 8601) |
updated_at | string | 最終更新時刻(ISO 8601) |
エラーレスポンス
| HTTP | type | 説明 |
|---|
| 401 | TOKEN_INVALID | 認証トークンが欠落または無効 |
| 404 | not_found_error | Skill が存在しないまたは削除済み: "Skill '{skill_id}' was not found." |