Landed Cost Calculator API
Trademo Technologies Inc
Landed Cost Calculator API
Trademo Technologies Inc
Landed Cost Calculator API
Trademo Technologies Inc
Meet Trade Compliance Norms with Trademo’s Landed Cost Calculator API
About Trademo
Trademo is building a singular source of truth for global supply chains by collecting billions of supply chain data points including import/export shipments, customs declarations, duties & tariffs, import/export compliances and controls, sanctions and more from 1000+ authoritative public and private bodies globally. Trademo further leverages technologies like Big Data, Machine Learning, NLP, entity resolution and graph databases to cleanse, enrich and derive hidden insights from this unstructured data. Trademo today empowers 1000+ businesses globally with supply chain insights to help them find new commercial opportunities, ensure compliance with trade regulations, and build operational supply chain resilience.
Introduction
The Landed Cost Calculator API helps you calculate the landed cost for your products. It accounts for all the latest tariffs(VAT, GST, etc.) and factors in hidden costs to give you the best landed cost possible.
This trade compliance API works on the following input parameters:
1. Country of Import
2. Country of Export
3. Incoterm
4. FTA (Included/Not Included)
5. Applicable FTAs
6. Mode of Transport
7. HS Code
8. Cost of Commodities
9. Freight(For CIF)
10. Insurance(For CIF)
API Structure :-
Request
HTTP Method: POST
Content-Type: application/json
Requires Authentication: Yes
Rate Limited: Yes
Request : {
"countryOfImport": "US",
"countryOfExport": "CA",
"hscode": "2204228000",
"incoterm": "CIF",
"useFTA": "No",
"modeOfTransport": "sea",
"quantity": 1000,
"unit": "liter",
"currency": "USD",
"costOfGood": 1000,
"freight": 10,
"insurance": 10,
"applicable_product_specification_for_excise_duty": {
"condition": "wines over 24 % alcohol"
}
} Response : {
"attributes": {
"countryOfImport": "US",
"countryOfExport": "CA",
"hscode": "2204228000",
"incoterm": "CIF",
"useFTA": "No",
"modeOfTransport": "sea",
"quantity": 1000,
"unit": "liter",
"currency": "USD",
"costOfGood": 1000,
"freight": 10,
"insurance": 10,
"applicable_product_specification_for_excise_duty": {
"condition": "wines over 24 % alcohol"
}
},
"result": {
"currency": "USD",
"landed_cost_breakup": {
"incoterm_value": "1020.0",
"import_duty": "224.0",
"excise_duty": "13500.0",
"Merchandise Processing Fee (MPF)": "3.46",
"Harbor Maintenance Fee (HMF)": "1.25"
},
"landed_cost": "14748.71"
},
"status": "success"