---
title: "List Guidances"
method: GET
path: "/v2/guidances"
tags: ["Guidance API"]
---

# List Guidances

`GET /v2/guidances`

List all guidances for a team.

## Query parameters

- `teamId` string — The ID of the team.
- `pageSize` integer — Maximum number of results to return. Default is 1000, maximum is 2000.
- `pageToken` string — Token for pagination. Leave empty for the first request.

## Response `200`

Success

- SvflowPublicapiListGuidancesResponse
  - `data` SvflowPubapimodelsGuidance[] — The list of guidances.
    - `id` string — The ID of the guidance.
    - `teamId` string — The ID of the team that the guidance belongs to.
    - `name` string — The name of the guidance.
    - `description` string — A description of the guidance.
    - `content` string — The content of the guidance.
    - `shouldAlwaysUse` boolean — Whether this guidance should always be used (skipping LLM selection).
    - `isPublished` boolean — Whether the guidance is published. Set to true to publish the guidance.
    - `hasUnpublishedChanges` boolean — Whether there are unpublished changes to the guidance (computed by server).
    - `scopedId` string — The copy-invariant scoped ID of the guidance (e.g. "skill_..."), stable across cross-team copies.
    - `folderId` string, nullable — The ID of the folder the guidance lives in, if any. Populated on the single-guidance responses (Get/Create/Update and the folder-move endpoint); omitted from ListGuidances responses — fetch the guidance to read its folder membership.
  - `nextPageToken` string, nullable — Token for retrieving the next page of results. Empty if no more results.

## Other responses

- `default` — Error

---

[API](https://skmtc.net/serval/apis/serval-public-api.md) · [All operations](https://skmtc.net/serval/apis/serval-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/serval/serval-public-api/versions/0549515e9384/schema)
