GET /api/v1/cloud/skills
Retrieves the list of all skills under the current account with cursor-based pagination.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer $QODER_PAT |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of records per page. Default 20, range 1-100. Values above 100 return 400 invalid_request_error. |
page | string | No | Claude-style forward cursor. Equivalent to after_id; mutually exclusive with before_id and after_id |
after_id | string | No | Cursor pagination: return records after this ID. Mutually exclusive with page and before_id |
before_id | string | No | Cursor pagination: return records before this ID. Mutually exclusive with page and after_id |
name | string | No | Prefix search on skill name, case-insensitive |
source | string | No | Filter by source. Valid values: custom, qoder |
Example request
Example response
HTTP 200 OKPagination example (has_more = true)
Empty list response
Response fields
| Field | Type | Description |
|---|---|---|
data | array | Array of Skill objects. content is not included in list responses |
next_page | string | null | Forward cursor for the next page; use as page when has_more is true |
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 |
has_more | boolean | Whether more records are available; when true, use next_page as the next page’s page value |
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | Invalid limit, invalid source, or more than one of page, before_id, and after_id is provided |
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
Related
Agent Skills
Attach domain expertise to your agent.