---
title: "List saved searches"
method: GET
path: "/v1/projects/{projectSlug}/searches"
tags: ["Saved Searches"]
---

# List saved searches

`GET /v1/projects/{projectSlug}/searches`

Returns every saved search in the project. The response uses the standard paginated shape; the saved-search list currently fits in a single page (`nextCursor` is always `null`).

## Path parameters

- `projectSlug` string, required — Project slug (human-readable identifier)

## Response `200`

List of saved searches

- PaginatedSavedSearches
  - `items` SavedSearch[], required — Page of items, in the requested sort order.
    - `id` string, required — Stable saved-search identifier.
    - `organizationId` string, required — Organization that owns this saved search.
    - `projectId` string, required — Project this saved search belongs to.
    - `slug` string, required — URL-safe slug derived from `name`. Regenerated when the name changes in a way that affects the slug.
    - `name` string, required — Human-readable name.
    - `query` string, nullable, required — Free-text semantic query applied alongside `filters`. `null` when the search is filter-only. At least one of `query` or `filters` must be set.
    - `filters` object, required — Structured filter set applied alongside `query`. Empty object means filter-free. At least one of `query` or `filters` must be set.
    - `deletedAt` string, nullable, required — ISO-8601 timestamp at which the search was deleted. `null` while active.
    - `createdAt` string, required — ISO-8601 timestamp of creation.
    - `updatedAt` string, required — ISO-8601 timestamp of the last update.
  - `nextCursor` string, nullable, required — Opaque cursor for fetching the next page. `null` when there are no more pages. Pass it back in `cursor` to continue.
  - `hasMore` boolean, required — `true` when there is at least one more page after this one.

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.net/latitude-dev/apis/latitude.md) · [All operations](https://skmtc.net/latitude-dev/apis/latitude/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/latitude-dev/latitude/versions/6a8789c59a5c/schema)
