---
title: "List Tasksets"
method: GET
path: "/v2/tasksets"
tags: ["tasksets"]
---

# List Tasksets

`GET /v2/tasksets`

List tasksets visible to the caller, with search, ownership, and sort filters.

## Query parameters

- `limit` integer
- `offset` integer
- `search` string, nullable — ILIKE-match on taskset name
- `public_only` boolean — Only public tasksets (Public tab)
- `owner_only` boolean — Only tasksets owned by the caller's membership; ignored when public_only=True
- `min_tasks` integer, nullable — Only tasksets with at least this many live tasks
- `registry_id` string, uuid, nullable — Only tasksets with a live task whose latest version uses a scenario on this registry
- `scenario_id` string, uuid, nullable — Only tasksets with a live task whose latest version uses this scenario
- `project_id` string, uuid, nullable — Only tasksets contained by this Project; omitted lists every Project
- `sort_by` 'starred' | 'date' | 'name' | 'stars' | 'tasks' — Sort order: starred (caller's starred first), date (updated_at DESC), name (A-Z), stars (star_count DESC), tasks (task_count DESC)

## Response `200`

Successful Response

- PaginatedResponseTasksetResponse
  - `items` TasksetResponse[], required
    - `id` string, uuid, required
    - `name` string, required
    - `description` string, nullable
    - `registry_id` string, uuid, nullable
    - `project_id` string, uuid, nullable, required
    - `public` boolean, required
    - `purpose` string
    - `star_count` integer
    - `task_count` integer
    - `sample_unit_count` integer
    - `system_prompt` string, nullable
    - `hidden_progress_stages` string[], nullable
    - `lifecycle_stages` LifecycleStage[]
      - `key` string, required
      - `label` string, required
    - `columns` object
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `is_starred` boolean
    - `is_owner` boolean
    - `can_view_scoped` boolean
    - `can_edit` boolean
    - `can_manage` boolean
    - `owner_name` string, nullable
    - `owner_avatar_url` string, nullable
    - `team_name` string, nullable
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required

## Other responses

- `400` — Invalid or malformed request
- `401` — Missing or invalid credentials
- `403` — Caller may not access this resource
- `404` — Referenced entity does not exist
- `409` — Resource already exists
- `422` — Validation Error

---

[API](https://skmtc.dev/hud/apis/hud-platform.md) · [All operations](https://skmtc.dev/hud/apis/hud-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hud/hud-platform/revisions/f4d79d769332/schema)
