EDGE ENGINE SUB-2MS DETERMINISTIC V8 EXECUTION • ZERO DATA RETENTION • EXPLORE API SPECS →
Client-side check No sign-up No data upload Air Waybill Validator

Air Waybill Validator: Check an 11-Digit AWB Number

An air waybill validator checks the structure of an 11-digit IATA air waybill number and verifies that its final digit equals the seven-digit serial number modulo 7.

Validate the airline prefix, serial, and Mod-7 check digit of an IATA air waybill number.

Validate an air waybill number

Test data:

Enter a value and run the check. Everything runs locally in this page.

Runs entirely in your browser. The value you type is never sent to a server.

How to validate an air waybill number

  1. Enter the 11-digit number — Type the AWB number with or without the hyphen after the airline prefix.
  2. Split the prefix and serial — The first three digits are the airline accounting prefix; the next seven digits are the serial number.
  3. Verify the Mod-7 check digit — The last digit must equal the serial number modulo 7 under IATA Resolution 600a.

What the check verifies

The check verifies that an 11-digit air waybill number has a valid structure and that its last digit equals the seven-digit serial modulo 7. This is the check digit defined by IATA Resolution 600a; it detects single-digit typos but does not confirm that the shipment exists.

The validator splits the number into its three-digit airline accounting prefix and seven-digit serial, then divides the serial by 7 and compares the remainder with the final digit. IATA Resolution 600a defines this Mod-7 check digit.

A valid number confirms the format only. Airline prefix ownership and live shipment status are separate lookups, and the Stanza IATA Validator API resolves the airline behind a prefix.

Air waybill format

FieldDigits
Airline accounting prefix3
Serial number7
Mod-7 check digit1

Worked example: 020-12345675. The serial 1234567 modulo 7 is 5, which matches the final digit.

Frequently Asked Questions

How is the air waybill check digit calculated?

Divide the seven-digit serial number by 7 and keep the remainder. The last digit of the AWB must equal that remainder, from 0 to 6.

What is the format of an air waybill number?

An AWB number is 11 digits: a three-digit airline accounting prefix, a seven-digit serial number, and a one-digit Mod-7 check digit, usually written as 020-12345675.

Is an air waybill number the same as a tracking number?

The AWB number identifies the air waybill document issued for a shipment. Carriers use it as the shipment reference for tracking, but the tracking status is not part of the number itself.

Can the validator check e-ticket or baggage tag numbers?

This tool validates air waybill numbers only. Stanza also documents the 13-digit IATA e-ticket format and its Mod-7 check digit, and the IATA Validator API covers e-tickets and baggage tags.

Can I validate air waybills in bulk?

The free tool checks one number at a time. The Stanza IATA Validator API is the server-side option for integrations with API-key authentication and higher payload limits.

Free browser tool vs Stanza API

CapabilityFree browser toolStanza API
Where it runsYour browserCloudflare edge
AuthenticationNoneBearer API key
Rate limitNonePublished per-tier limits
Data handlingNever leaves your deviceIn-memory, zero retention
E-ticket and baggage tag validation through the IATA Validator APINoYes
Airline prefix resolution with carrier name and countryNoYes

Sources & standards