post
https://public-api.easyship.com/2024-09/taxes_and_duties
Retrieve tax and duty costs information.
Use either of the two schemas TaxAndDutyCreateWithCountryIDs OR TaxAndDutyCreateWithCountryAlpha2 to provide country specific details.
Example:
TaxAndDutyCreateWithCountryIDs Example
```json { "destination_country_id": 96, "origin_country_id": 234, "insurance_fee": 0, "shipment_charge": 120.1, "items": [ { "duty_origin_country_id": 234, "hs_code": "17029010", "customs_value": 100 }, { "duty_origin_country_id": 158, "hs_code": "17029090", "customs_value": 20.1 } ] } ```TaxAndDutyCreateWithCountryAlpha2 Example
```json { "destination_country_alpha2": "US", "origin_country_alpha2": "CA", "insurance_fee": 0, "shipment_charge": 120.1, "items": [ { "duty_origin_country_alpha2": "US", "hs_code": "17029010", "customs_value": 100 }, { "duty_origin_country_alpha2": "US", "hs_code": "17029090", "customs_value": 20.1 } ] } ```Required authorization scope: public.tax_and_duty:read
