You can now create multiple API keys for a single account!
This makes it easier to manage different projects, rotate keys, or share access securely - all while tracking usage under the same account.

You can now create multiple API keys for a single account!
This makes it easier to manage different projects, rotate keys, or share access securely - all while tracking usage under the same account.
We have added a 'Duty & Tax Exempt' checkbox for products, which prevents them from being included in landed cost calculations. This is useful if you are selling digital or other products that you are not physically shipping:
We have also improved our DDU/DAP setting. Now, when the Do not collect duty and taxes setting is enabled - the duty and tax will be displayed as seperate line in the cart/checkout but will not be included in the total. This removes the need for offset charges and gives customers a much clearer checkout experience:
An example cart showing duty and tax with DDU enabled.
We have updated our calculation logic for US bound shipments to reflect the removal of the $800 USD De minimis effetive 29 August 2025.
Now, duties and taxes will be calculated for all shipments to the US regardless of value.
The Landed Cost API now includes currency and value details for all additional taxes and charges - giving you a full, itemized breakdown of every cost component in the calculation.
Look for the additional_tax_and_charges_items
relationship in the response. Each item in the included array now contains:
name
- The label of the tax or tax/chargecurrency_code
- The currency of the tax/chargetotal_value
- The numeric value of the tax/chargeHere's an example:
{
"relationships": {
"additional_tax_and_charges_items": {
"data": [
{ "id": "267108", "type": "additional_tax_and_charge" },
{ "id": "267109", "type": "additional_tax_and_charge" }
]
}
},
"included": [
{
"id": "267108",
"type": "additional_tax_and_charge",
"attributes": {
"name": "Merchandise Processing Fee (MPF) - Informal Entry by Post",
"currency_code": "USD",
"total_value": "11.78"
}
},
{
"id": "267109",
"type": "additional_tax_and_charge",
"attributes": {
"name": "25% Additional tariff on Mexican-origin goods",
"currency_code": "USD",
"total_value": "450.0"
}
}
]
}