# Interzoid Get Custom Duty Rates

> Interzoid Get Custom Duty Rates is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-14).

Retrieves customs duty rates and import tax information for a given HS code and destination country

## Facts

- Endpoint: GET https://api.interzoid.com/getcustomsdutyrates
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-custom-duty-rates-36c74573
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CgQjdv6IdBeR6pOHASyn1

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 interzoid-get-custom-duty-rates-36c74573
```

Example prompt: What are the customs duty rate and import VAT for HS code 8471.30.00 being shipped to Germany?

## When to prefer this

Use this endpoint when you need to programmatically look up customs duty rates and import tax (VAT/GST) for a specific product (identified by HS code) destined for a specific country. Ideal for e-commerce platforms, ERP/CRM enrichment, logistics apps, or trade compliance tools that need real-time tariff data without maintaining their own customs database.

## Known failure modes

- Invalid or malformed HS code returns an error or empty result
- Unsupported destination country name/code returns no data
- Missing required query parameters (hscode or lookup) results in a 400-level error
- HS code shorter than 6 digits may fail validation
- Rate limit exceeded returns a payment/credits error

## How this service works

Retrieve import customs duty rates for any HS code entering any country — with MFN applied rates, preferential FTA rates, import VAT/GST, additional duties (anti-dumping, safeguard, excise), de minimis thresholds, and non-tariff restrictions.

## Output

Returns a JSON object containing the destination country name and ISO code, the HS code and its textual description, the MFN applied duty rate, the duty basis (e.g. ad valorem), and the applicable import VAT or GST rate (e.g. German Einfuhrumsatzsteuer).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup",
      "hscode"
     ],
     "properties": {
      "hscode": {
       "type": "string",
       "description": "Harmonized System (HS) code, 6-digit minimum (up to 10-digit national extensions)"
      },
      "lookup": {
       "type": "string",
       "description": "Destination country name or ISO code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "HSCode": "8471.30.00",
  "Credits": "0",
  "DutyBasis": "Ad valorem",
  "ImportVATOrGST": "19% German VAT (Einfuhrumsatzsteuer) on customs value plus duty",
  "MFNAppliedRate": "0.0% (WTO Information Technology Agreement)",
  "CountryCodeISO2": "DE",
  "HSCodeDescription": "Portable automatic data processing machines, weight not exceeding 10 kg",
  "DestinationCountry": "Germany"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-custom-duty-rates-36c74573/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
