# EUDR HS Code Scope Checker

> EUDR HS Code Scope Checker is a paid API for AI agents from reg.chainverdict.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Determines whether a given HS code falls within the EU Deforestation Regulation scope, returning the regulated commodity and applicable enforcement deadline tier.

## Facts

- Endpoint: GET https://reg.chainverdict.xyz/v1/eudr/scope
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eudr-hs-code-scope-checker-f4c221f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fwe26uuj6QMcU2hwvAjB4

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 eudr-hs-code-scope-checker-f4c221f0
```

Example prompt: Is HS code 1801 in scope for the EU Deforestation Regulation, and if so, what commodity category does it fall under and which enforcement deadline tier applies?

## When to prefer this

Use this endpoint when you need a fast, structured classification of whether a specific HS code triggers EUDR obligations, especially when building automated compliance screening pipelines, onboarding supplier products, or pre-checking shipments before filing a Due Diligence Statement. Prefer this over manual regulation lookup when you need machine-readable commodity and deadline tier data keyed to a tariff code.

## Known failure modes

- HS code not recognized or invalid format — returns out-of-scope or error response
- HS code is valid but not covered by EUDR — returns not-in-scope result
- Deadline tier information may be stale if the simplification package trilogue has concluded and deadlines have moved
- Ambiguous HS codes that span multiple commodity categories may return incomplete mapping

## How this service works

Is this HS code inside the EU Deforestation Regulation? Returns the commodity (cattle, cocoa, coffee, oil palm, rubber, soya, wood) and the applicable enforcement deadline tier. A simplification package was in trilogue as of the asOf date; deadlines may move.

## Output

Returns whether the queried HS code is within EUDR scope, the regulated commodity it maps to (one of: cattle, cocoa, coffee, oil palm, rubber, soya, or wood), and the applicable enforcement deadline tier. Includes a note that a simplification package was in trilogue as of the reference date and deadlines may shift.

## 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": [
      "hs"
     ],
     "properties": {
      "hs": {
       "type": "string",
       "description": "HS code to test against EUDR commodity scope"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eudr-hs-code-scope-checker-f4c221f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from reg.chainverdict.xyz](https://www.zero.xyz/host/reg.chainverdict.xyz/llms.txt)
