---
title: "List all POTs"
method: GET
path: "/pots"
tags: ["pots"]
---

# List all POTs

`GET /pots`

List all POTs, optionally filtered by workspace.

Args:
    workspace_id: Optional workspace UUID filter
    pot_service: Injected PotService instance

Returns:
    List of POTs and total count

## Query parameters

- `workspace_id` string, uuid, nullable — Filter POTs by workspace ID

## Response `200`

POTs retrieved successfully

- POTListResponse — Response for listing POTs.
  - `pots` POTResponse[], required
    - `id` string, uuid, required
    - `slug` string, required
    - `workspace_id` string, uuid, required
    - `name` string, required
    - `description` string, required
    - `domain` string — Knowledge domain of the POT (from config.pot.domain). Exposed so clients — e.g. `scipot pot export` — can round-trip it; the coverage-gap routing key derives from it.
    - `constitution` ConstitutionResponse, required — Constitution for API responses.
      - `facts` ConstitutionFactResponse[], required
        - `id` string, required
        - `content` string, required
        - `title` string, nullable
        - `pot_score` number, required
        - `level` string, required
        - `rationale` string, nullable
        - `keywords` string[]
      - `version` string
      - `last_updated` string, required
      - `approved_by` string, required
      - `fact_count` integer, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/scipot/apis/scipot-core-api.md) · [All operations](https://skmtc.dev/scipot/apis/scipot-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/scipot/scipot-core-api/revisions/e8712e9ffeae/schema)
