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

# Presets

> Presets are a way to simplify the tax calculation API calls by pre-configuring the tax attributes for a specific product or customer.

## Product presets

Product presets are a way to simplify the tax calculation by pre-configuring the tax attributes for a specific product. In the [Taxwire App](https://app.taxwire.com), you can ingest products from one of our supported sources.

Let's highlight the steps to create a product preset with a Stripe product.

* Step 1: Ingest the product. In the [Taxwire App](https://app.taxwire.com), go to the [Integrations](https://app.taxwire.com/integrations) page and click on the `Stripe` button. Once you add your Stripe key and create the integration, we will automatically ingest your products.
* Step 2: Select a product. In the [Taxwire App](https://app.taxwire.com), go to the [Products](https://app.taxwire.com/products) page and click on the product you want to create a preset for.
* Step 3: Configure the product. In the product details slide-out, you will see a `Tax settings override` section with a search bar for tax categories. You can then search and select ALL the relevant tax categories for the product. If there are attributes applicable to the product, you can select them in the `Attributes` section (if the section is not visible, it means there are no attributes applicable to the product).

That's it! You have now created a product preset.
You can now use this product preset in the calculation API call.

```json theme={null}
{
    "quantity": "1",
    "unit_price": "100"
    "product": {
        "preset": {
            "id": "prd_123",
            "source": "stripe"
        }
    }
}
```

This will automatically use the tax attributes set in the product preset for the tax calculation.

More presets will be added in the future, including presets for customers and fulfillment centers.
