---
title: "List curated collections"
method: GET
path: "/collections"
tags: ["Collections"]
---

# List curated collections

`GET /collections`

Returns every collection with a member count and a small `previewMembers` array (capped at 3) so the list page can render inline avatars without a second round trip. `previewMembers` is the mixed-kind preview (orgs and products); `previewOrgs` is the legacy org-only preview retained for back-compat. Member counts and previews are joined through `organizations_public` (for orgs) and `products_active` (for products), so soft-deleted / on_demand rows never inflate the totals. Pass `?featured=1` to return only homepage-featured collections.

## Query parameters

- `featured` '1' | 'true'

## Response `200`

Collections, ordered by name (optionally filtered to featured).

- object[]
  - `slug` string, required
  - `name` string, required
  - `description` string, nullable, required
  - `memberCount` integer, required
  - `isFeatured` boolean, required
  - `previewMembers` union[]
    - union
      - object
        - `slug` string, required
        - `name` string, required
        - `domain` string, nullable, required
        - `avatarUrl` string, nullable, required
        - `githubHandle` string, nullable, required
        - `description` string, nullable, required
        - `kind` 'org', required
      - object
        - `slug` string, required
        - `name` string, required
        - `description` string, nullable, required
        - `org` object, required
          - `slug` string, required
          - `name` string, required
          - `domain` string, nullable, required
          - `avatarUrl` string, nullable, required
          - `githubHandle` string, nullable, required
        - `kind` 'product', required
  - `previewOrgs` object[]
    - `slug` string, required
    - `name` string, required
    - `domain` string, nullable, required
    - `avatarUrl` string, nullable, required
    - `githubHandle` string, nullable, required
    - `description` string, nullable, required

---

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