> ## Documentation Index
> Fetch the complete documentation index at: https://dev.chargily.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a product

> Retrieves all the information of an already-existing product by providing it's unique identifier (ID).

## Path parameters

<ParamField path="id" type="string">
  The ID of the product.
</ParamField>

## Returns

If a valid ID is provided, it returns a product object.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "01hhyjnrdbc1xhgmd34hs1v3en",
    "entity": "product",
    "livemode": false,
    "name": "Super Product",
    "description": null,
    "images": [],
    "metadata": [],
    "created_at": 1702907011,
    "updated_at": 1702911993
  }
  ```
</ResponseExample>
