Forward API reference.
Description
Lists Skills visible to the current account, with cursor pagination and name-prefix search.
Path
GET /api/v1/forward/skills
Request headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Page size, maximum 100. |
page | string | No | Pagination cursor (recommended), taken from next_page in the previous response. Mutually exclusive with after_id and before_id. |
after_id | string | No | Forward pagination cursor. Mutually exclusive with page and before_id. |
before_id | string | No | Backward pagination cursor. Mutually exclusive with page and after_id. |
display_title | string | No | Case-insensitive prefix search on the Skill display title. |
source | string | No | Filters by Skill source: custom or qoder. before_id is not supported when source is supplied. |
name | string | No | ⚠️ Deprecated: Compatibility alias for display_title with identical semantics. Use display_title. |
Example request
Example response
Empty-list response
Response fields
Each item in the response data array is a Skill object. List results do not include content or content_encoding. See List pagination fields for pagination fields.
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | The request body, path parameters, or query parameters are invalid. |
| 401 | authentication_error | The authentication token is missing or invalid. |
| 403 | permission_error | The caller cannot access this resource. |
| 500/502/503 | api_error | Forward or a dependent service failed. |