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
Retrieves the list of all skills under the current account with cursor-based pagination.
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Query parameters
| Parameter | Type | Required | Description |
|---|
limit | integer | No | Maximum number of records per page |
after | string | No | Cursor pagination: return records after this ID |
Example request
# List all skills
curl -X GET https://openapi.qoder.sh/api/v1/cloud/skills \
-H "Authorization: Bearer $QODER_PAT"
# Paginate
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10" \
-H "Authorization: Bearer $QODER_PAT"
# Page forward with a cursor
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10&after=skill_019e3bba474b73cfaf19eae9b5f5e66d" \
-H "Authorization: Bearer $QODER_PAT"
Example response
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
}
{
"data": [],
"first_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
"last_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
"has_more": true
}
Empty list response
{
"data": [],
"first_id": null,
"last_id": null,
"has_more": false
}
Response fields
| Field | Type | Description |
|---|
data | array | Array of Skill objects |
first_id | string | null | ID of the first record on the current page |
last_id | string | null | ID of the last record on the current page (used as after for the next page) |
has_more | boolean | Whether more records are available; when true, use last_id as the next page’s after value |
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
See Errors for the full error envelope.