# EU Customs Duty Checker by HS Code

**Use case:** 

Look up official EU TARIC customs measures for a commodity code and country of origin: third-country duty, preferences, quotas and the new low-value consignment duty, as JSON. Built for sellers shipping into the EU.

## Input

```json
{
  "items": [
    {
      "code": "6109100010",
      "origin": "CN"
    },
    {
      "code": "8471300000",
      "origin": "US"
    }
  ],
  "codes": [
    "6109100010",
    "8471300000"
  ],
  "origin": "",
  "destination": "EU",
  "date": "",
  "maxItems": 10
}
```

## Output

```json
{
  "destination": {
    "label": "Destination",
    "format": "string"
  },
  "code_normalised": {
    "label": "Code",
    "format": "string"
  },
  "code_valid": {
    "label": "Valid",
    "format": "boolean"
  },
  "origin": {
    "label": "Origin",
    "format": "string"
  },
  "third_country_duty": {
    "label": "3rd-country duty",
    "format": "string"
  },
  "preferential_duty": {
    "label": "Preferential duty",
    "format": "string"
  },
  "low_value_consignment_duty_eur": {
    "label": "Low-value duty (EUR)",
    "format": "number"
  },
  "vat": {
    "label": "VAT",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Import Duty Lookup – EU TARIC & UK Tariff by Commodity Code](https://apify.com/rowfeed/import-duty-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rowfeed/import-duty-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/rowfeed/import-duty-lookup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
