---
title: "Get a collection's detail page payload"
method: GET
path: "/collections/{slug}"
tags: ["Collections"]
---

# Get a collection's detail page payload

`GET /collections/{slug}`

Returns the collection's name/description plus its ordered members. `members` is the canonical mixed-kind list (orgs + products); `orgs` is the legacy org-only subset retained for back-compat. Orgs join through `organizations_public` and products through `products_active`, so soft-deleted / on_demand rows never leak via a collection. GitHub handles are picked deterministically from `org_accounts` so multi-handle orgs don't fan out the row.

## Path parameters

- `slug` string, required

## Response `200`

Collection detail with ordered members.

- object
  - `slug` string, required
  - `name` string, required
  - `description` string, nullable, required
  - `isFeatured` boolean, required
  - `dailySummaryEnabled` boolean, required
  - `members` union[], required
    - 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
  - `orgs` object[], required
    - `slug` string, required
    - `name` string, required
    - `domain` string, nullable, required
    - `avatarUrl` string, nullable, required
    - `githubHandle` string, nullable, required
    - `description` string, nullable, required

## Other responses

- `404` — No collection with that slug.

---

[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)
