# US Export Control (ECCN) Lookup

> US Export Control (ECCN) Lookup is a paid API for AI agents from apiwitchcraft.duckdns.org, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns US export control classification details for a given ECCN code, supporting compliance checks on controlled goods and technologies.

## Facts

- Endpoint: GET https://apiwitchcraft.duckdns.org/export-ctrl
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-export-control-eccn-lookup-790399dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KnIyBaS2MfKVnQn-xdQ9j

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 us-export-control-eccn-lookup-790399dc
```

Example prompt: Can you look up the US export control details for ECCN 5A002 — I need to know the control reasons and whether a license is required for export?

## When to prefer this

Use this endpoint when you need to quickly resolve the meaning, control reasons, and licensing requirements of a specific ECCN code in a compliance workflow. Ideal for trade compliance automation, product classification review, or pre-export screening pipelines where you have a known ECCN and need structured regulatory detail without querying the full BIS database manually.

## Known failure modes

- Invalid or malformed ECCN code returns an error or empty result
- ECCN code not found in the database returns a not-found response
- Missing required 'eccn' query parameter returns a 400 bad request
- Service unavailable returns a 5xx error
- Payment not completed returns a 402 Payment Required

## How this service works

Check US export-control status for a destination country and product: ECCN/EAR99 classification signal, license-required vs NLR, and dual-use screening against the Commerce Control List. Built for export-compliance gating in trade, procurement, and agentic workflows. Pay per check in USDC on Base, no API key, instant JSON.

## Output

Returns structured information about the specified ECCN code, including its classification description, control reasons, applicable licensing requirements, and any relevant regulatory notes under the US Export Administration Regulations (EAR).

## 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": [
      "eccn"
     ],
     "properties": {
      "eccn": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-export-control-eccn-lookup-790399dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiwitchcraft.duckdns.org](https://www.zero.xyz/host/apiwitchcraft.duckdns.org/llms.txt)
