Skip to main content
GET
List the skills in a group

Authorizations

Authorization
string
header
required

A Recursion API key, created in the console under API keys.

Path Parameters

skill_group_id
string<uuid>
required

Skill group id (UUID) whose skills to list.

Query Parameters

limit
integer

How many skills to return. Defaults to 100, the maximum is 500.

Required range: 1 <= x <= 500
page_token
string

The next_page_token from a previous response. Pass it back with the same limit to read the next page.

Response

Response body of GET /v1/skills. Paged: read to the end by following next_page_token until it is absent. Each row carries the name and description an agent's prompt discloses, but not the instructions, which are read one version at a time.

Response body of GET /v1/skills. Paged: read to the end by following next_page_token until it is absent. Each row carries the name and description an agent's prompt discloses, but not the instructions, which are read one version at a time.

skills
object[] | null
required

One page of matching skills, newest first. Soft-deleted skills are omitted.

next_page_token
string

Present when more skills match. Pass it as page_token with the same filters and limit to read the next page. Absent on the last page.