ISO 6346 Container ID Checker

Validate shipping container identification codes against the ISO 6346 standard

Upload Excel or CSV File

Upload an Excel (.xlsx) or CSV (.csv) file with container IDs. A new file will be downloaded with validation results added as extra columns.

API Usage

You can also validate container IDs programmatically via the REST API:

POST /api/check
Content-Type: application/json

{
  "containerIds": ["MSCU1234561", "CSQU3054381"]
}

Response:

{
  "results": [
    {
      "containerId": "MSCU1234561",
      "valid": true,
      "errors": [],
      "formatted": "MSCU 123456 1",
      "expectedCheckDigit": 1
    },
    ...
  ]
}