GET /v1/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 |
after | string | No | Cursor pagination: return records after this ID |
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 |
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 |