List all skills under the current account with pagination.
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 <PAT or SAT> |
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 | Forward cursor; pass the next_page value from the previous response |
source | string | No | Filter by source. Valid values: custom, qoder |
display_title | string | No | Prefix search on the display title, case-insensitive |
name | string | No | ⚠️ Deprecated: legacy alias for prefix search on the display title (use display_title instead) |
after_id | string | No | ⚠️ Deprecated: return records after this ID (use page instead) |
before_id | string | No | ⚠️ Deprecated: return records before this ID (use page instead) |
Example request
Example response
HTTP 200 OK
Response fields
| Field | Type | Description |
|---|---|---|
data | array | Array of Skill objects |
has_more | boolean | Whether more records are available; when true, use next_page as the next page's page value |
next_page | string | null | Forward cursor for the next page; pass as page when has_more is true |
first_id | string | null | ⚠️ Deprecated: ID of the first record on the current page (use has_more/next_page for pagination instead) |
last_id | string | null | ⚠️ Deprecated: ID of the last record on the current page (use has_more/next_page for pagination instead) |
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 |