# SSCC-18 Logistics Unit Code Validator

> SSCC-18 Logistics Unit Code Validator is a paid API for AI agents from trade.chainverdict.xyz, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Validates an SSCC-18 (Serial Shipping Container Code) logistics unit barcode for correct format and check digit.

## Facts

- Endpoint: GET https://trade.chainverdict.xyz/v1/sscc/validate
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sscc-18-logistics-unit-code-validator-b3d07904
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fflrBGv616ayoO3FpEy1P

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sscc-18-logistics-unit-code-validator-b3d07904
```

Example prompt: Can you validate this SSCC-18 code for me — 006141411234567890 — and tell me if the format and check digit are correct?

## When to prefer this

Use this endpoint when you need to verify SSCC-18 logistics unit codes specifically, as opposed to GTIN product codes, ISO 6346 container numbers, or IMO ship numbers. It is purpose-built for GS1 pallet/logistics-unit serial shipping container codes and correctly applies GS1 check digit rules for the 18-digit format.

## Known failure modes

- Missing or empty 'code' query parameter returns an error
- Non-18-digit input flagged as invalid format
- Invalid check digit returns a failed validation response
- Non-numeric characters in the code cause a format error
- Network timeout or upstream service unavailability

## How this service works

Validate an SSCC-18 logistics-unit serial shipping container code.

## Output

Returns a validation result indicating whether the SSCC-18 code is correctly formatted and has a valid GS1 check digit, along with any specific error details if the code is invalid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "code"
 ],
 "properties": {
  "code": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "valid": {
   "type": "boolean"
  },
  "_attestation": {
   "type": "object"
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sscc-18-logistics-unit-code-validator-b3d07904/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trade.chainverdict.xyz](https://www.zero.xyz/host/trade.chainverdict.xyz/llms.txt)
