> ## Documentation Index
> Fetch the complete documentation index at: https://docs.eazecustoms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get export declaration status

> Poll the current status of an export declaration.

Poll the status and details of an export declaration.

### Path Parameters

<ParamField path="id" type="number" required>
  The unique declaration ID.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "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": []
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "statusCode": 404,
    "message": "Declaration not found or not accessible.",
    "error": "Not Found"
  }
  ```
</ResponseExample>
