Skip to main content
GET
List skills

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Optional search string to filter skills by name or slash key. Case-insensitive partial match.

Maximum string length: 255
enabled
boolean

Filter by enabled status.

scope
enum<string>

Return only skills of this scope. user is the caller's own private skills, account the company's shared skills, and builtin the global catalogue. Omit to return everything the caller can reach.

Available options:
user,
account,
builtin
limit
integer
default:50

The limit on the number of objects to return, ranging between 1 and 100.

Required range: 1 <= x <= 100
after
string

A cursor to use in pagination. after is an object ID that defines your place in the list. For example, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo to fetch the next page of the list.

before
string

A cursor to use in pagination. before is an object ID that defines your place in the list. For example, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include before=obj_bar to fetch the previous page of the list.

Response

List of skills

object
enum<string>
required

The object type, always 'list'.

Available options:
list
data
object[]
required

Array of skill objects.

has_more
boolean
required

Whether there are more results available.