# Amazon Tariff Calculator Agent Skill

> Calculate import duties, landed costs, and VAT/GST for any Amazon trade route. Supports Section 301 tariffs and HS code lookup—start free in seconds.

- Canonical: https://nanoskill.ai/tr/skills/amazon-tariff-calculator-agent-skill
- Markdown: https://nanoskill.ai/tr/skills/amazon-tariff-calculator-agent-skill.md
- Author: nexscope-ai
- Published: 2026-09-03T03:00:00.000Z
- Updated: 2026-09-03T10:13:30.016Z
- Language: tr
- Source type: github
- Popularity signal: 338

## Sources

- https://github.com/nexscope-ai/Amazon-Skills/blob/main/tariff-calculator-amazon

## Install

```shell
npx skills add https://github.com/nexscope-ai/Amazon-Skills/blob/main/tariff-calculator-amazon
```

## About

The tariff calculator helps Amazon sellers instantly estimate import duties, landed costs, and VAT/GST for any international trade route. Whether sourcing from China to the US, shipping to EU markets, or evaluating new suppliers, get a complete cost breakdown before you commit.

Unlike basic duty calculators, this tool includes Section 301 tariff schedules, trade agreement discounts (USMCA, EVFTA), and an HS code matcher that suggests the right classification from a product description. Every calculation factors in freight, insurance, customs fees, and port charges for an accurate total landed cost.

Designed for e-commerce operators, FBA sellers, and sourcing agents, the calculator streamlines financial planning for Amazon inventory. Use the custom route feature to model any scenario, and integrate it into your regular sourcing workflow for fast, repeatable estimates.

## Key features

- **Universal Trade Routes**: Calculate import costs for any origin-destination pair including US, EU, China, Canada, Australia, and custom routes.
- **Section 301 Tariffs**: Automatically applies US additional duties for China imports, with updated rates for electronics, apparel, toys, and more.
- **HS Code Matcher**: Enter a product description to get suggested HS codes, simplifying correct classification for duty calculations.
- **Complete Landed Cost**: Breaks down FOB value, freight, insurance, duties, VAT/GST, customs fees, and port charges into a detailed per-unit landed cost.
- **VAT/GST Support**: Includes standard VAT/GST rates for EU, UK, CA, AU, and CN destinations, with the option to set custom rates.

## Use cases

- **Calculate landed costs for your shipment**: Input your HS code, origin, destination, product value, and freight to get a full cost breakdown including duties and taxes—ideal for Amazon FBA sellers evaluating suppliers.
- **Look up HS codes by product description**: Quickly find the correct HS code for wireless earbuds, bluetooth speakers, or any product to ensure accurate tariff estimation and avoid customs delays.
- **Estimate Section 301 impact**: See exactly how US additional tariffs on Chinese goods affect your product costs, with chapter-specific rates for electronics, apparel, toys, and furniture.
- **Apply trade agreement rates**: Check if your trade route qualifies for reduced duties under USMCA, EVFTA, or RCEP to lower your import costs.

## Result preview

See a full tariff calculation report about HS validation, duty rates, cost composition charts, and actionable recommendations to reduce landed costs.

![the demo of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-demo-1.png)

![the demo of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-demo-2.png)

![the demo of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-demo-3.png)

![the demo of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-demo-4.png)

## Result walkthrough

### Step1: Install

Add the skill to your AI agent.

![the step of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-step-1.png)

### Step2: Describe Your Shipment

Share your product descriptions, HS codes, origin/destination countries, FOB values, quantities, and freight costs.

![the step of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-step-2.png)

### Step3: Get Your Cost Report

Receive a report with HS verification, tariff rates, VAT/GST, per-unit cost breakdowns, and sensitivity analysis — all in one page.

![the step of amazon tariff calculator agent skill](https://file.nanoskill.ai/amazon-tariff-calculator-agent-skill-step-3.png)

## Skill definition

# Tariff Calculator — Amazon 💰

Universal tariff and landed cost calculator for international Amazon sellers.

## Installation

```bash
npx skills add nexscope-ai/eCommerce-Skills --skill tariff-calculator-amazon -g
```

## Features

- **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

## 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 |

## Section 301 Tariffs (China → USA)

| 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% |

## Landed Cost Formula

```
Landed Cost = 
    FOB Value
  + International Freight
  + Insurance
  + Import Duty
  + VAT/GST (if applicable)
  + Customs Clearance
  + Port Fees
  + Inland Freight
```

## Usage

### Basic Calculation

```bash
python3 scripts/calculator.py
```

### With 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
}'
```

### HS Code Lookup

```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
}'
```

## 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
```

## Trade 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 |

## 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](https://www.nexscope.ai/?co-from=skill) — AI tools for e-commerce sellers.**

## FAQ

### What is the tariff calculator for Amazon?

It’s a free tool that calculates import duties, taxes, and total landed cost for any international trade route. Designed for Amazon sellers to estimate costs before sourcing products.

### How do I calculate import duties?

Enter your product’s HS code, country of origin, destination, and product value. The calculator applies the correct duty rate, including Section 301 tariffs if applicable.

### Does it include Section 301 tariffs for China-US?

Yes, the calculator includes the current US Section 301 additional duty rates for common HS chapters imported from China.

### Can I add custom duty or VAT rates?

Absolutely. Use the custom trade route feature to specify your own duty and VAT rates for any route.

### Is the calculator free to use?

Yes, it’s free and requires no API key. Install via the command line and run locally.

### Which trade routes are supported?

Any origin-destination combination is supported. Popular routes include CN→US, CN→EU, US→EU, and CN→AU, but you can use custom pairs.
