tariff-calculator-amazon
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseTariff Calculator — Amazon 💰
关税计算器 — Amazon 💰
Universal tariff and landed cost calculator for international Amazon sellers.
面向跨境亚马逊卖家的通用关税与到岸成本计算器。
Installation
安装
bash
npx skills add nexscope-ai/eCommerce-Skills --skill tariff-calculator-amazon -gbash
npx skills add nexscope-ai/eCommerce-Skills --skill tariff-calculator-amazon -gFeatures
功能特性
- Universal Trade Routes — Any origin to any destination
- Tariff Rate Lookup — HS code → duty rate
- Section 301 Tariffs — US additional duties on China imports
- VAT/GST Calculation — EU, UK, CA, AU, CN rates
- Landed Cost — Complete cost breakdown
- HS Code Matcher — Product description → HS code suggestions
- Trade Agreements — USMCA, EVFTA, RCEP preferential rates
- 通用贸易路线 — 支持任意始发地到目的地
- 关税税率查询 — 通过HS code查询税率
- 301条款关税 — 美国对中国进口商品的额外关税
- VAT/GST计算 — 支持欧盟、英国、加拿大、澳大利亚、中国的税率
- 到岸成本计算 — 完整的成本明细
- HS代码匹配 — 通过产品描述提供HS代码建议
- 贸易协定支持 — USMCA、EVFTA、RCEP优惠税率
Supported Trade Routes
支持的贸易路线
| Route | Key Tariffs | VAT/GST |
|---|---|---|
| 🇨🇳 → 🇺🇸 China → USA | Section 301 (7.5-25%) | N/A |
| 🇨🇳 → 🇪🇺 China → EU | Standard duties | 19-22% |
| 🇨🇳 → 🇬🇧 China → UK | Standard duties | 20% |
| 🇺🇸 → 🇪🇺 USA → EU | Standard duties | 19-22% |
| 🇪🇺 → 🇺🇸 EU → USA | Standard duties | N/A |
| 🇺🇸 → 🇨🇳 USA → China | Retaliatory tariffs | 13% VAT |
| 🇨🇳 → 🇨🇦 China → Canada | Standard duties | 5% GST |
| 🇨🇳 → 🇦🇺 China → Australia | Standard duties | 10% GST |
| Custom | User-defined | User-defined |
| 贸易路线 | 主要关税 | VAT/GST |
|---|---|---|
| 🇨🇳 → 🇺🇸 中国→美国 | Section 301(7.5-25%) | N/A |
| 🇨🇳 → 🇪🇺 中国→欧盟 | 标准关税 | 19-22% |
| 🇨🇳 → 🇬🇧 中国→英国 | 标准关税 | 20% |
| 🇺🇸 → 🇪🇺 美国→欧盟 | 标准关税 | 19-22% |
| 🇪🇺 → 🇺🇸 欧盟→美国 | 标准关税 | N/A |
| 🇺🇸 → 🇨🇳 美国→中国 | 报复性关税 | 13% VAT |
| 🇨🇳 → 🇨🇦 中国→加拿大 | 标准关税 | 5% GST |
| 🇨🇳 → 🇦🇺 中国→澳大利亚 | 标准关税 | 10% GST |
| 自定义 | 用户定义 | 用户定义 |
Section 301 Tariffs (China → USA)
301条款关税(中国→美国)
| HS Chapter | Products | Additional Rate |
|---|---|---|
| 84xx | Computers, machinery | 25% |
| 85xx | Electronics (some) | 0-25% |
| 94xx | Furniture, lighting | 25% |
| 95xx | Toys | 25% |
| 61/62 | Apparel | 7.5% |
| 64xx | Footwear | 7.5% |
| 42xx | Bags, accessories | 7.5% |
| HS编码章节 | 产品类别 | 额外税率 |
|---|---|---|
| 84xx | 计算机、机械 | 25% |
| 85xx | 电子产品(部分) | 0-25% |
| 94xx | 家具、照明设备 | 25% |
| 95xx | 玩具 | 25% |
| 61/62 | 服装 | 7.5% |
| 64xx | 鞋类 | 7.5% |
| 42xx | 箱包、配饰 | 7.5% |
Landed Cost Formula
到岸成本计算公式
Landed Cost =
FOB Value
+ International Freight
+ Insurance
+ Import Duty
+ VAT/GST (if applicable)
+ Customs Clearance
+ Port Fees
+ Inland FreightLanded Cost =
FOB Value
+ International Freight
+ Insurance
+ Import Duty
+ VAT/GST (if applicable)
+ Customs Clearance
+ Port Fees
+ Inland FreightUsage
使用方法
Basic Calculation
基础计算
bash
python3 scripts/calculator.pybash
python3 scripts/calculator.pyWith Parameters
带参数计算
bash
python3 scripts/calculator.py '{
"hs_code": "8518300000",
"origin_country": "CN",
"destination_country": "US",
"fob_value": 5000.00,
"quantity": 500,
"freight_cost": 200.00
}'bash
python3 scripts/calculator.py '{
"hs_code": "8518300000",
"origin_country": "CN",
"destination_country": "US",
"fob_value": 5000.00,
"quantity": 500,
"freight_cost": 200.00
}'HS Code Lookup
HS代码查询
bash
python3 scripts/hs_lookup.py "wireless earbuds"
python3 scripts/hs_lookup.py "bluetooth speaker"bash
python3 scripts/hs_lookup.py "wireless earbuds"
python3 scripts/hs_lookup.py "bluetooth speaker"Custom Trade Route
自定义贸易路线
bash
python3 scripts/calculator.py '{
"hs_code": "9503009000",
"origin_country": "VN",
"destination_country": "DE",
"fob_value": 10000.00,
"quantity": 1000,
"freight_cost": 500.00,
"custom_duty_rate": 0.047,
"custom_vat_rate": 0.19
}'bash
python3 scripts/calculator.py '{
"hs_code": "9503009000",
"origin_country": "VN",
"destination_country": "DE",
"fob_value": 10000.00,
"quantity": 1000,
"freight_cost": 500.00,
"custom_duty_rate": 0.047,
"custom_vat_rate": 0.19
}'Output Example
输出示例
💰 Tariff & Landed Cost Report
Product: Wireless Bluetooth Earbuds
HS Code: 8518300000
Route: China 🇨🇳 → USA 🇺🇸
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Cost Breakdown
FOB Value $ 5,000.00
International Freight $ 200.00
Insurance $ 15.00
CIF Value $ 5,215.00
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🏛️ Duties & Taxes
Base Duty (0.0%) $ 0.00
Section 301 (0.0%) $ 0.00
Total Duty $ 0.00
Customs Clearance $ 150.00
Port Fees $ 50.00
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
💵 Landed Cost Summary
Total Landed Cost $ 5,515.00
Per Unit Cost $ 11.03💰 关税与到岸成本报告
产品:无线蓝牙耳机
HS Code: 8518300000
贸易路线:中国 🇨🇳 → 美国 🇺🇸
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 成本明细
FOB Value $ 5,000.00
国际运费 $ 200.00
保险费 $ 15.00
CIF Value $ 5,215.00
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🏛️ 关税与税费
基础关税(0.0%) $ 0.00
Section 301(0.0%) $ 0.00
总关税 $ 0.00
清关费 $ 150.00
港口费 $ 50.00
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
💵 到岸成本汇总
总到岸成本 $ 5,515.00
单位成本 $ 11.03Trade Agreement Support
贸易协定支持
| Agreement | Countries | Benefit |
|---|---|---|
| USMCA | US, Mexico, Canada | Reduced/zero duties |
| EVFTA | EU, Vietnam | Reduced duties |
| RCEP | Asia-Pacific | Reduced duties |
| UK-Japan | UK, Japan | Reduced duties |
| 协定名称 | 适用国家/地区 | 优惠内容 |
|---|---|---|
| USMCA | 美国、墨西哥、加拿大 | 降低/零关税 |
| EVFTA | 欧盟、越南 | 降低关税 |
| RCEP | 亚太地区 | 降低关税 |
| UK-Japan | 英国、日本 | 降低关税 |
Custom Configuration
自定义配置
Create a custom config for your routes:
json
{
"default_origin": "CN",
"default_destination": "US",
"include_insurance": true,
"insurance_rate": 0.003,
"customs_fee": 150,
"port_fee": 50
}Part of Nexscope AI — AI tools for e-commerce sellers.
为你的贸易路线创建自定义配置:
json
{
"default_origin": "CN",
"default_destination": "US",
"include_insurance": true,
"insurance_rate": 0.003,
"customs_fee": 150,
"port_fee": 50
}隶属于Nexscope AI — 面向电商卖家的AI工具。