> ## 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 Price object

> Prices define the unit cost and the currency of products. A product can have multiple prices.

## Attributes

<ResponseField name="id" type="string">
  The unique identifier of the price.
</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="amount" type="integer">
  The amount to be charged.
</ResponseField>

<ResponseField name="currency" type="string">
  A lowercase [ISO currency
  code](https://www.iso.org/iso-4217-currency-codes.html "ISO currency code").
  Currently supported currencies are: "dzd".
</ResponseField>

<ResponseField name="product_id " type="string">
  The ID of the [Product](/v2/api-reference/products/product-object "Product").
</ResponseField>

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

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

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

<ResponseExample>
  ```json The Price Object theme={null}
  {
    "id": "01hhy57e5j3xzce7ama8gtk7m0",
    "entity": "price",
    "livemode": false,
    "amount": 200,
    "currency": "dzd",
    "metadata": null,
    "created_at": 1702892910,
    "updated_at": 1702892910,
    "product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
  }
  ```
</ResponseExample>
