---
title: "Get Product"
method: GET
path: "/products/{productId}"
tags: ["Products"]
---

# Get Product

`GET /products/{productId}`

Get detailed configuration data for a specific product, including description, optimization notes, team members, and quality index metric weights. Available on all plans.

## Path parameters

- `productId` string, uuid, required — The product ID to retrieve

## Response `200`

Product retrieved successfully

- GetProductResponse
  - `id` string, uuid, required — The product ID.
  - `name` string, required — The product name.
  - `icon` string, nullable, required — Product icon identifier.
  - `color` string, nullable, required — Product color hex code.
  - `description` string, nullable, required — Product description.
  - `optimizationNotes` string, nullable, required — AI optimization notes for the product.
  - `userPrivacy` string, required — User privacy setting.
  - `members` ProductMember[], required — Product team members.
    - `id` string, uuid, required — The member record ID.
    - `userId` string, required — The user ID.
    - `role` string, required — The member role.
    - `avatarUrl` string, nullable, required — Avatar URL of the member.
  - `qualityIndexMetricWeights` QualityIndexMetricWeight[], required — Quality index metric weight configuration.
    - `key` string, required — The metric key.
    - `weight` number, required — The metric weight (0-1).
    - `name` string, required — Human-readable metric name.
    - `description` string, required — Metric description.
  - `createdAt` string, required — When the product was created (ISO 8601).
  - `updatedAt` string, required — When the product was last updated (ISO 8601).

## Other responses

- `404` — Product not found
- `500` — Server error

---

[API](https://skmtc.net/greenflash-ai/apis/greenflash-api-reference.md) · [All operations](https://skmtc.net/greenflash-ai/apis/greenflash-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/greenflash-ai/greenflash-api-reference/versions/c566e560677d/schema)
