---
title: "List Collections"
method: GET
path: "/v2/collections"
tags: ["external", "external-v2"]
---

# List Collections

`GET /v2/collections`

List collections visible to the authenticated caller with cursor pagination.
Results are ordered by `order_by` and return `next_page` when additional rows are available.
For relevance-ranked retrieval by query, use `POST /v2/collections/search`.

## Query parameters

- `limit` integer, nullable — Maximum number of collections in this page. Use smaller values for lower latency. Default is 50; valid range is 1 to 100.
- `page` string, nullable — Opaque cursor from a previous list response. Omit for the first page. IMPORTANT: Reuse with the same filters and `order_by` settings.
- `order_by` 'created_at' | 'updated_at' — Sort key for pagination boundaries. Use `updated_at` (default) for recency feeds. Use `created_at` for creation-order views.
- `filter_by_created_after` string, date-time, nullable — Optional inclusive lower bound for collection creation time (ISO 8601). The timestamp must include a timezone offset such as `Z` or `+01:00`.
- `filter_by_created_before` string, date-time, nullable — Optional inclusive upper bound for collection creation time (ISO 8601). The timestamp must include a timezone offset such as `Z` or `+01:00`.
- `filter_by_updated_after` string, date-time, nullable — Optional inclusive lower bound for collection update time (ISO 8601). The timestamp must include a timezone offset such as `Z` or `+01:00`.
- `filter_by_updated_before` string, date-time, nullable — Optional inclusive upper bound for collection update time (ISO 8601). The timestamp must include a timezone offset such as `Z` or `+01:00`.

## Response `200`

OK

- CollectionListResponseSchema
  - `next_page` string, nullable — Opaque cursor for the next page of collection results. `null` when there are no more results.
  - `request_id` string, required — Identifier for this API request. Useful for tracing and support.
  - `results` CollectionListItemResponseSchema[], required — Page of collection results matching the requested sort.
    - `created_at` string, date-time, required — Creation timestamp for the collection in ISO 8601 format.
    - `description` string, nullable, required — Optional description text currently stored on the collection.
    - `id` string, uuid, required — UUID of the collection.
    - `note_count` integer, required — Current number of notes in the collection.
    - `title` string, required — Current title of the collection.
    - `updated_at` string, date-time, required — Last modification timestamp for the collection in ISO 8601 format.
  - `total` integer, required — Total number of matching collections before pagination is applied.

---

[API](https://skmtc.net/mem/apis/mem-api.md) · [All operations](https://skmtc.net/mem/apis/mem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mem/mem-api/revisions/4023cb07f31f/schema)
