# Retrieve a product Retrieves details of a specific product by its unique identifier. Endpoint: GET /products/{id} Version: 1.0 ## Path parameters: - `id` (string, required) Unique identifier of the product Example: "prod_xT4LfvxLMQb4s9uFNIbXf9pm" ## Header parameters: - `cc-api-key` (string, required) Chaching API Key ## Response 200 fields (application/json): - `id` (string, required) Unique identifier for the object. Example: "prod_xT4LfvxLMQb4s9uFNIbXf9pm" - `object` (string, required) String representing the object’s type. Enum: "product" - `active` (boolean, required) Indicates whether the object is active. Example: true - `created` (number, required) Time at which the object was created. Measured in seconds since the Unix epoch Example: 1760018761 - `default_price` (string,null) The ID of the Price object that is the default price for this product. Example: "price_1SGKTmDZYOQH9uHk1vaSxPKa" - `description` (string,null) Customer-facing description. - `name` (string, required) The name of the product. Example: "Gold Plan" - `tax_code` (string) The tax code for the product. Example: "txcd_10000000" - `updated` (number,null, required) Time at which the object was last updated. Measured in seconds since the Unix epoch. Example: 1753181495 ## Response 400 fields