> ## 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.

# The Product object

> Products represent the goods or services you are selling to your customers.

## Attributes

<ResponseField name="id" type="string">
  The unique identifier of the product.
</ResponseField>

<ResponseField name="entity" type="string">
  A String representing the type of the object.
</ResponseField>

<ResponseField name="livemode" type="boolean">
  A "True" value means the request was made in Live Mode, while "False"
  indicates Test Mode.
</ResponseField>

<ResponseField name="name" type="string">
  A String representing the name of the product.
</ResponseField>

<ResponseField name="description" type="nullable, string">
  A String representing the description of the product.
</ResponseField>

<ResponseField name="images" type="array of strings">
  The images of the product.
</ResponseField>

<ResponseField name="metadata" type="dictionary">
  A Set of key-value pairs that can be used to store additional information
  about the product.
</ResponseField>

<ResponseField name="created_at" type="timestamp">
  Timestamp indicating when the product was created.
</ResponseField>

<ResponseField name="updated_at" type="timestamp">
  Timestamp indicating when the last time the product was updated (edited).
</ResponseField>

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