Skip to content
Create account
or
Sign in
The Stripe Docs logo
/
Ask AI
Create account
Sign in
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Developer tools
Get started
Payments
Finance automation
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Overview
Billing
Tax
    Overview
    Get started
    How Tax works
    Set up
    Using the Settings API
    Testing
    Integrate by payment flow
    Payment Links
    Checkout
    Invoicing
    Subscriptions
    Rate card subscriptions
    Custom payment integration
    Integrate with Stripe Connect
    Overview
    Tax for software platforms
    Tax for marketplaces
    Manage your compliance
    Monitor your obligations
    Register
    Calculate tax
      Specify product tax codes and tax behavior
      Collect customer addresses
      Zero tax amounts and reverse charges
      Tax customizations
    Report
    Third-Party Tax Apps
    File and Remit
    Tax Reference
    Product tax codes
    Supported countries
    FAQ
Reporting
Data
Startup incorporation
HomeFinance automationTaxCalculate tax

Specify product tax codes and tax behavior

Add tax codes and tax behavior to your products and prices to automatically calculate tax.

Copy page

Note

Log in or sign up for Stripe to enable Stripe Tax.

Stripe Tax uses product tax codes to associate products with their applicable tax rates. Assign each of your products a tax code to automatically apply the rate and other taxability rules.

See our list of available tax codes.

Preset tax codes

When activating Stripe Tax you can set two types of preset tax codes: one for products and one for shipping. You can set both in the Tax settings in the Dashboard.

The tax settings showing the preset tax codes, and the default shipping tax code.

The tax settings showing the preset tax codes, and the default shipping tax code.

Preset product tax code

We use the preset if you don’t explicitly specify a tax_code on your products or in product_data on your transactions. As you process payments, we also use the preset tax code to display the tax thresholds you might be approaching or have exceeded, under the Threshold monitoring section in your tax settings.

Preset shipping tax code

The preset shipping tax code represents the tax treatment for shipping fees when charged. We use this if you don’t explicitly specify a tax_code on a shipping rate. Stripe Tax allows you to change the default shipping treatment to Nontaxable if you don’t want to charge any tax on shipping fees. We recommend you leave the default as “Shipping” to ensure the correct tax is always charged.

Tax rules for shipping fees typically follow one of two methods, depending on the state or country:

  • Proportional Allocation Method: Shipping fees are taxed at the same rate as the items being shipped. If an order contains items with different tax rates or a mix of taxable and non-taxable goods, the shipping cost is divided proportionally based on the value of the goods. The tax rate of each item is then applied to its corresponding share of the shipping fee.
  • Highest Tax Rate Method: The entire shipping fee is taxed at the highest rate applied to any item in the order. For example, if a customer buys a tax-exempt item and a fully taxable item, the shipping cost is taxed at the higher rate.

To charge tax on shipping for subscriptions, you can create a Product or pass product_data for a line item called “shipping” and select the shipping tax_code.

Tax behavior

You must specify a tax_behavior on a price, or a default tax behavior in the tax settings in the Dashboard, which determines how tax is presented to the buyer. This allows you to localize your checkout depending on the market.

Tax-exclusive prices are common in the US and Canada and for B2B sales in other countries. Set the tax behavior to exclusive to add tax to the subtotal amount specified in your price.

Tax-inclusive prices are common for B2C sales in many markets outside the US. When set to inclusive, the amount your buyer pays remains constant, regardless of the tax amount (zero or positive). This applies to sales subject to reverse charge as well. The unit price differs between transactions subject to reverse charge and those that aren’t. If no tax applies, the tax-inclusive price is the unit price. If the tax amount is positive, the unit price is lower, excluding the tax amount.

Setting a default tax behavior (recommended)

You can define a default tax behavior that applies to every price that has no tax behavior defined. You can setup the default tax behavior in the Stripe Tax settings under the Include tax in prices section.

After you set the default tax behavior, all prices that don’t have a tax_behavior defined, use this setting and are ready for Stripe Tax. The options for the default tax behavior are:

  • Automatic: The tax behavior is based on the currency that’s chosen for a product price. For the currencies USD and CAD the tax behavior is exclusive. For all other currencies the tax behavior is inclusive. This also works with multi-currency Prices.
  • Inclusive: Inclusive tax is already included in the price. For example, a product has the price defined as 5.00 USD. The final price the customer pays is 5.00 USD.
  • Exclusive: Exclusive tax is added on top of the price. For example, a product has the price defined as 5.00 USD. The tax charged on this product could be 10% and would result in a final price of 5.50 USD. (Tax rates might differ—this is only an explanatory example.)

To override this setting for an individual price, set a tax behavior on a price.

Setting tax behavior on a price (optional)

You can set the tax behavior for a Price when creating it with the Dashboard or the API. When creating a Price in the Dashboard, you can inspect the impact of your pricing model on your revenue.

Caution

You can’t change tax_behavior after it’s been set to one of “exclusive” or “inclusive”.

Tax behavior for a Price object in the Stripe Dashboard

To create a Price with tax_behavior through the API, it might look like this:

Command Line
curl
curl https://api.stripe.com/v1/prices \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d unit_amount=10000 \ -d currency=usd \ -d product=prod_q23fxaHasd \ -d tax_behavior=exclusive \ -d "recurring[interval]"=month

For a multi-currency Price, use the currency_options.<currency>.tax_behavior parameter to set different tax behaviors for different currencies.

In some cases, you might want to use a custom price that hasn’t been pre-configured. You can pass in price_data instead of a price ID. For example, accepting a one time payment for a custom price might look like this:

Command Line
curl
curl https://api.stripe.com/v1/checkout/sessions \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d success_url="https://example.com/success" \ -d cancel_url="https://example.com/cancel" \ -d "payment_method_types[0]"=card \ -d "line_items[0][price_data][currency]"="usd" \ -d "line_items[0][price_data][unit_amount]"=10000 \ -d "line_items[0][price_data][tax_behavior]"="exclusive" \ -d "line_items[0][price_data][product]"="prod_Jb3wOhvaIOZZTM" \ -d "line_items[0][quantity]"=2 \ -d mode=payment

Setting a tax code on a product (recommended)

When creating Products in the Dashboard you can set your tax_code in the dropdown by searching for any available tax code. If you don’t, Stripe Tax uses the preset tax code defined on the Dashboard. If a product could fit multiple codes, for example, a SaaS product used for personal or business use depending on the type of customer, we recommend creating two separate products in Stripe and assigning the appropriate code to each.

Tax codes for a product in the Stripe Dashboard

To create a Product with tax_code using the API, it might look like this:

Command Line
curl
curl https://api.stripe.com/v1/products \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d name="Test Product" \ -d tax_code=
txcd_10000000

In some cases, you might want to use a custom product that hasn’t been pre-configured. You can pass in product_data instead of a product ID. For example, accepting a one time payment for a custom product might look like this:

Command Line
curl
curl https://api.stripe.com/v1/checkout/sessions \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d success_url="https://example.com/success" \ -d cancel_url="https://example.com/cancel" \ -d "payment_method_types[0]"=card \ -d "line_items[0][price_data][currency]"="usd" \ -d "line_items[0][price_data][unit_amount]"=10000 \ -d "line_items[0][price_data][tax_behavior]"="exclusive" \ -d "line_items[0][price_data][product_data][name]"="Product name" \ -d "line_items[0][price_data][product_data][tax_code]"=
txcd_10000000
\ -d "line_items[0][quantity]"=2 \ -d mode=payment

Creating a shipping rate with tax code (optional)

Checkout payment mode allows you to set shipping rates and charge tax on shipping. You can automatically calculate tax on shipping charges by setting the tax code on the shipping rate in the Dashboard or API.

Shipping rate with a tax code in the Stripe Dashboard
Command Line
curl
curl https://api.stripe.com/v1/shipping_rates \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d display_name="Ground shipping" \ -d type="fixed_amount" \ -d "fixed_amount[amount]"=500 \ -d "fixed_amount[currency]"=usd \ -d tax_behavior="inclusive" \ -d tax_code="txcd_92010001"

See also

  • Checkout and Tax
  • Invoicing and Tax
  • Determining customer locations
Was this page helpful?
YesNo
Need help? Contact Support.
Join our early access program.
Check out our changelog.
Questions? Contact Sales.
LLM? Read llms.txt.
Powered by Markdoc