---
title: "Get a product"
method: GET
path: "/products/{product_id}"
tags: ["products"]
---

# Get a product

`GET /products/{product_id}`

Get a product entry.

## Path parameters

- `product_id` string, required — The id of the product to be retrieved

## Response `200`

Product retrieved successfully

- object
  - `id` string — The id of the product
  - `name` string — The name of the product
  - `description` string — A brief description of the product
  - `price` number — The price of the product
  - `stock` integer — The stock quantity of the product
  - `category` string — The category of the product

## Other responses

- `400` — Bad Request
- `401` — Authentication error
- `404` — Not Found
- `500` — Server error

---

[API](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger.md) · [All operations](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hngprojects/kimiko-golang-swagger/revisions/2d1d3ed96bb9/schema)
