# POST /api/v1/billing/addon/preview

> Preview Addon Change

- **Tag:** billing
- **Operation ID:** `preview_addon_change_api_v1_billing_addon_preview_post`

## Description

Preview the billing impact of adding or removing an add-on.

**Request Body:**
- `addon_slug`: Add-on module slug from AddOnModule enum
- `action`: 'add' or 'remove'

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Request body

Schema: `AddonPreviewRequest`

- `addon_slug` (string · required) — Add-on module slug (e.g. 'ai_pro').
- `action` (string · required) (one of: add, remove) — 'add' or 'remove'.

## Responses

### 201 — Successful Response

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X POST 'https://api.ondayzero.com/api/v1/billing/addon/preview' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "addon_slug": "string",
  "action": "add"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/billing/addon/preview', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "addon_slug": "string",
  "action": "add"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

payload = {
  "addon_slug": "string",
  "action": "add"
}

response = httpx.post("https://api.ondayzero.com/api/v1/billing/addon/preview", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/billing/preview-addon-change
- OpenAPI slice: https://www.ondayzero.com/docs/reference/billing/preview-addon-change/openapi.json
- Other endpoints in **billing**: https://www.ondayzero.com/docs/reference/billing
