List Skills
Skills API
List Skills
Retrieve Skills in your workspace
GET
List Skills
Using our API via a dedicated deployment? Just replace
api.langdock.com with your deployment’s base URL: <deployment-url>/api/publicRequired Scopes
This endpoint requires theSKILL_API scope.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Number of Skills to return. Default: 50. Maximum: 250. |
cursor | string | No | Cursor from the previous response for pagination. |
query | string | No | Search query for matching Skills. |
slug | string | No | Filter by Skill slug. Must use lowercase letters, numbers, and dashes. |
Example
Response Format
Success Response (200 OK)
Example Response
Error Handling
| Status Code | Description |
|---|---|
| 400 | Invalid query parameter |
| 401 | Invalid or missing API key |
| 403 | Missing SKILL_API scope or Skills product access |
| 429 | Rate limit exceeded |
| 500 | Internal server error |
Langdock intentionally blocks browser-origin requests to protect your API key and ensure your applications remain secure. For more information, please see our guide on API Key Best Practices.
Authorizations
API key as Bearer token. Format "Bearer YOUR_API_KEY"
Query Parameters
Number of Skills to return.
Required range:
1 <= x <= 250Cursor from the previous response for pagination.
Search query for matching Skills.
Filter by Skill slug.
Maximum string length:
100Pattern:
^[a-z0-9-]+$