List User Skills
GET/api/skills
Returns a list of skills accessible to the specified user. Supports pagination, search by name, and fetching skills by id or slug.
When a single id or slug is provided, returns a single skill object with additional metadata fields instead of a paginated list.
When multiple id or slug values are provided (comma-separated like id=a,b or repeated like id=a&id=b), returns an array of skill objects. Skills that are not found are omitted from the array.
Request
Responses
- 200
- 401
- 404
- 500
List of skills retrieved successfully. When a single id or slug is provided, returns a single skill object with additional fields (metadata, allowed_tools) instead of a paginated list. When multiple id or slug values are provided, returns an array of those skill objects (missing skills omitted).
Authentication required or invalid token
Skill not found (when using a single id or slug parameter)
Internal server error