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

# Evento price.created

> Evento price.created.

## Evento `price.created`

Disparado quando um preço é criado via
[`POST /v1/prices`](/api-reference/prices/create) ou inline em
[`POST /v1/products`](/api-reference/products/create).

`data.object` carrega o `price` completo no mesmo formato da resposta do
endpoint de criação.

```json theme={}
{
  "id": "evt_123",
  "object": "event",
  "created_at": "2026-05-16T14:09:27Z",
  "data": {
    "object": {
      "id": "price_123",
      "object": "price",
      "created_at": "2026-05-16T14:09:27Z",
      "currency": "brl",
      "is_active": true,
      "livemode": true,
      "metadata": {},
      "name": "Mensal",
      "product": "prod_123",
      "recurring": {
        "interval": "month",
        "interval_count": 1,
        "trial_period_days": null,
        "usage_type": "licensed"
      },
      "tax_behavior": "unspecified",
      "type": "recurring",
      "unit_amount": 9990,
      "updated_at": null
    }
  },
  "livemode": true,
  "organization": "org_123",
  "request": {
    "id": null
  },
  "type": "price.created"
}
```
