API Dokumentation

Authentifizierung via Authorization: Bearer <API_KEY>. Content-Type: application/json.

POST /v1/report

curl -X POST https://api.zollbot.at/v1/report \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "product": "LED-Tischlampe 220V",
    "origin": "CN",
    "destination": "AT"
  }'

Antwort (Beispiel)

{
  "hs_code": "9405.20",
  "duty_example": 3.7,
  "compliance": ["LVD","EMV","RoHS"],
  "sources": ["TARIC","EU-Lex"],
  "pdf_url": "https://zollbot.at/report/12345.pdf"
}

Webhook

Optionaler Callback für asynchrone Verarbeitung: POST /v1/webhook – wir senden dir den finalen Status.

Tipp: Teste mit einem Einmal-Kauf und prüfe die Response-Endpunkte mit deinem Team.