# EU Customs Duty Lookup by HS Code

> EU Customs Duty Lookup by HS Code is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216001/call, status unknown (last checked 2026-09-14).

Look up EU customs duty rates for a given HS code and origin country, including preferential rates and anti-dumping status

## Facts

- Endpoint: GET https://api.strale.io/x402/customs-duty-lookup
- Price: $0.216001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-e7adfb9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nfErW-F4IzevyaFnB3H-4

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-strale-io-e7adfb9c
```

Example prompt: What's the EU customs duty rate for HS code 8471.30 imported from China — including any preferential rates and whether there are anti-dumping duties in effect?

## When to prefer this

Use this endpoint when you need programmatic access to EU import duty rates by HS code, especially when you need preferential rates under EU trade agreements or need to check anti-dumping status for specific origin countries. Prefer this over manual tariff lookups or general trade databases when building automated import cost calculators or compliance tools targeting the EU market.

## Known failure modes

- Invalid or malformed HS code returns an error (e.g. wrong digit count or non-existent code)
- Unknown or unsupported origin country code returns no results
- HS code not found in EU customs tariff database returns empty or not-found response
- Missing required hs_code parameter results in a 400 Bad Request

## How this service works

Look up EU customs duty rates by HS code and origin country. Returns duty rate, preferential rates, anti-dumping status.

## Output

Returns the standard (MFN) duty rate, any applicable preferential rates under EU trade agreements, and anti-dumping status for the specified HS code and origin country combination

## Example request

```json
{
 "hs_code": "8471.30",
 "origin_country": "US",
 "destination_country": "DE"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "hs_code"
     ],
     "properties": {
      "hs_code": {
       "type": "string"
      },
      "origin_country": {
       "type": "string"
      },
      "destination_country": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-e7adfb9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
