improved
Detailed taxes in Landed Cost API
August 16th, 2025
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/charge
Here'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"
}
}
]
}