# Products Products describe the specific goods or services you offer to your customers. For example, you might offer a Standard and Premium version of your goods or service; each version would be a separate Product. They can be used in conjunction with [Prices](https://docs.stripe.com/api/products.md#prices) to configure pricing in Payment Links, Checkout, and Subscriptions. Related guides: [Set up a subscription](https://docs.stripe.com/docs/billing/subscriptions/set-up-subscription.md), [share a Payment Link](https://docs.stripe.com/docs/payment-links.md), [accept payments with Checkout](https://docs.stripe.com/docs/payments/accept-a-payment.md#create-product-prices-upfront), and more about [Products and Prices](https://docs.stripe.com/docs/products-prices/overview.md) ## Endpoints ### Create a product - [POST /v1/products](https://docs.stripe.com/api/products/create.md) ### Update a product - [POST /v1/products/:id](https://docs.stripe.com/api/products/update.md) ### Retrieve a product - [GET /v1/products/:id](https://docs.stripe.com/api/products/retrieve.md) ### List all products - [GET /v1/products](https://docs.stripe.com/api/products/list.md) ### Delete a product - [DELETE /v1/products/:id](https://docs.stripe.com/api/products/delete.md) ### Search products - [GET /v1/products/search](https://docs.stripe.com/api/products/search.md)