API documentation Declaration Estimate

Contents

Get declaration estimate

Provides VAT and duty estimates for a given set of declaration information.

Endpoint

[POST] /v4/declaration_estimate

Attributes

See declaration attributes for reference.

Example

Request

{
  "consignee": {
    "name1": "ViaEurope BV",
    "street": "Pudongweg 21",
    "zip": "1437EM",
    "country": "NL",
    "city": "Rozenburg"
  },
  "type": "marketplace_4",
  "declaration_country": "NL",
  "products": [
    {
      "description": "Carpenter Hammer",
      "taric": "4113100000",
      "base_value": 36120,
      "quantity": 10,
      "weight": 6000,
      "country_of_origin": "CN",
      "marketplace_url": "http://www.amazon.de/dp/B000VCZU8O",
      "client_ref": "ABC-123"
    },
    {
      "description": "Beard Trimmer",
      "taric": "4113100000",
      "base_value": 17990,
      "quantity": 10,
      "weight": 10000,
      "country_of_origin": "CN",
      "marketplace_url": "https://www.amazon.co.uk/dp/B07BHXZLZR",
      "client_ref": "DEF-789"
    }
  ]
}

Response

{
  "declaration_country": "NL",
  "country_of_export": "CN",
  "origin_client_ref": null,
  "customs_value": 25351,
  "est_payable_duties": 1267,
  "est_payable_vat": 5588,
  "products": [
    {
      "base_value": 36120,
      "customs_value": 19569,
      "description": "CARPENTER HAMMER",
      "est_payable_duties": 978,
      "est_payable_vat": 4314,
      "quantity": 10,
      "weight": 6000,
      "taric": "4113100000",
      "original_taric": null,
      "marketplace_url": "http://www.amazon.de/dp/B000VCZU8O",
      "client_ref": "ABC-123"
    },
    {
      "base_value": 17990,
      "customs_value": 5782,
      "description": "BEARD TRIMMER",
      "est_payable_duties": 289,
      "est_payable_vat": 1274,
      "quantity": 10,
      "weight": 10000,
      "taric": "4113100000",
      "original_taric": null,
      "marketplace_url": "https://www.amazon.co.uk/dp/B07BHXZLZR",
      "client_ref": "DEF-789"
    }
  ]
}