Skip to main content
GET
/
v1
/
declarations
/
{id}
Get export declaration status
curl --request GET \
  --url https://sandbox-api.easecustoms.com/v1/declarations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "declarationId": 43,
  "shipmentId": 16,
  "referenceNumber": "EXP-2026-00042",
  "status": "ready",
  "lrn": "NL202600002",
  "mrn": "26NL90831023812039",
  "type": "EXPORT",
  "exporter": {
    "name": "EZC B.V.",
    "eoriNo": "NL100006139B01"
  },
  "consignee": {
    "name": "US Retail Inc."
  },
  "items": [
    {
      "id": 8,
      "description": "Industrial water pump components",
      "hsCode": "8413810090",
      "quantity": 10,
      "grossMass": 480,
      "netMass": 450,
      "value": 9500,
      "currency": "EUR",
      "originCountry": "NL"
    }
  ],
  "errors": []
}
Poll the status and details of an export declaration.

Path Parameters

id
number
required
The unique declaration ID.
{
  "declarationId": 43,
  "shipmentId": 16,
  "referenceNumber": "EXP-2026-00042",
  "status": "ready",
  "lrn": "NL202600002",
  "mrn": "26NL90831023812039",
  "type": "EXPORT",
  "exporter": {
    "name": "EZC B.V.",
    "eoriNo": "NL100006139B01"
  },
  "consignee": {
    "name": "US Retail Inc."
  },
  "items": [
    {
      "id": 8,
      "description": "Industrial water pump components",
      "hsCode": "8413810090",
      "quantity": 10,
      "grossMass": 480,
      "netMass": 450,
      "value": 9500,
      "currency": "EUR",
      "originCountry": "NL"
    }
  ],
  "errors": []
}