Collect taxes in Checkout
Learn how to collect taxes for one-time payments in Stripe Checkout.
Stripe offers two ways to calculate tax on your Checkout Sessions: Stripe Tax and Tax Rates.
Stripe Tax—a paid product that automatically calculates the tax on your transactions without the need to define the rates and rules. Fees only apply after you’ve added at least one location where you’re registered to calculate and remit tax.
Tax Rates—a free feature that allows you to define any number of tax rates for invoices, subscriptions, and one-time payments that use Checkout. Stripe won’t create or maintain any tax rates on your behalf.
You can also collect customer tax IDs with Checkout.
Stripe Tax allows you to calculate the tax on your one-time and recurring payments when you use Checkout. You can enable Stripe Tax to automatically compute taxes on all of your Checkout purchases and subscriptions. Make sure to integrate Checkout before reading through this guide.
Update your Products and Prices
When calculating tax, Stripe Tax uses information stored on the Products and Prices APIs to determine the right rates and rules. You can update your Checkout products and prices to include:
tax_
—Specifies whether the price is consideredbehavior inclusive
orexclusive
of taxes.tax_
(optional)—Specifies the product tax code. If you don’t set acode tax_
on a product, we apply your preset product tax code. For more information, consult our list of tax codes.code
When you set the tax_
parameter to exclusive
, it adds tax to the subtotal. This is common in US markets and for business-to-business (B2B) sales. If you set the tax_
to inclusive
, the amount your buyer pays never changes (even if the tax rate varies). This is common practice for business-to-consumer (B2C) buyers in markets outside of the US. If you don’t want to create your products and prices upfront, you can pass the price_
and product_
parameters in your Checkout session.
Note
Learn more about Products, prices, tax codes, and tax behavior.
Create a Checkout Session
After updating your products and prices, you’re ready to start calculating tax on your Checkout sessions. You can create sessions for one-time and recurring purchases.
To calculate tax for new customers, Checkout validates and uses the provided shipping or billing address. For existing customers, Checkout calculates tax by validating and using the attached customer shipping or billing address. If you capture a new billing or shipping address for an existing customer, Checkout won’t automatically override the previous billing or shipping information. You must explicitly request customer address changes.
Apple Pay and Google Pay
If you wish to ensure that Google Pay is offered as a payment method while using Stripe Tax in Checkout, you must require collecting a shipping address. Apple Pay with Stripe Tax displays only when the customer’s browser supports Apple Pay version 12.
Calculate tax for new customers
If you don’t pass in an existing customer when creating a Checkout session, Checkout creates a new customer and automatically saves the billing address and shipping information. Checkout uses the shipping address entered during the session to determine the customer’s location for calculating tax. If you don’t collect shipping information, Checkout uses the billing address.