---
title: "Collections this product belongs to"
method: GET
path: "/products/{slug}/collections"
tags: ["Products"]
---

# Collections this product belongs to

`GET /products/{slug}/collections`

Returns the curated collections that pin this product, ordered alphabetically by collection name. Mirrors `GET /v1/orgs/:slug/collections` so the web 'Featured in' sidebar renders identically at the org and product levels — a `coding-agents` collection that pins Claude Code surfaces on the Claude Code product page. Each item includes `memberCount` (visible public orgs + products).

## Path parameters

- `slug` string, required

## Response `200`

Collection membership list

- 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

## Other responses

- `404` — Product not found

---

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