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 一覧を取得します。ページネーションをサポートします。
ヘッダー
| ヘッダー | 必須 | 説明 |
|---|
| Authorization | はい | Bearer $QODER_PAT |
クエリパラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|
limit | integer | いいえ | 1 ページあたりの返却件数上限 |
after | string | いいえ | カーソルページネーション:この ID 以降のレコードを返す |
リクエスト例
# すべての Skill を取得
curl -X GET https://openapi.qoder.sh/api/v1/cloud/skills \
-H "Authorization: Bearer $QODER_PAT"
# ページネーションで取得
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10" \
-H "Authorization: Bearer $QODER_PAT"
# カーソルでページ送り
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10&after=skill_019e3bba474b73cfaf19eae9b5f5e66d" \
-H "Authorization: Bearer $QODER_PAT"
レスポンス例
HTTP 200 OK
{
"data": [
{
"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"
}
],
"first_id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
"last_id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
"has_more": false
}
ページネーション例(has_more = true)
{
"data": ["..."],
"first_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
"last_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
"has_more": true
}
空一覧レスポンス
{
"data": [],
"first_id": null,
"last_id": null,
"has_more": false
}
レスポンスフィールド
| フィールド | 型 | 説明 |
|---|
data | array | Skill オブジェクト配列 |
first_id | string | null | 現在ページ先頭レコード ID |
last_id | string | null | 現在ページ末尾レコード ID(after カーソル用) |
has_more | boolean | さらにレコードがあるかどうか(true の場合は last_id を次ページの after 値として使用) |
エラーレスポンス
| HTTP | type | 説明 |
|---|
| 401 | TOKEN_INVALID | 認証トークンが欠落または無効 |