Validate IATA Resolution 600a Air Waybills (11-digit MOD-7), e-tickets, and airline accounting prefixes in sub-5ms.
Official high-performance .NET client library for IATA Air Cargo AWB & Aviation Validator, built on the Stanza Micro-API Network. Fully compatible with .NET Standard 2.0, .NET 6.0, .NET 7.0, and .NET 8.0+.
- 🌐 Online Interactive Sandbox: Test your inputs live
- 📚 API Reference & Schemas: View documentation on Stanza
- ⚡ Platform Overview: Explore the Stanza Developer Network
dotnet add package StanzaApi.IataValidatorusing System;
using System.Threading.Tasks;
using StanzaApi.IataValidator;
class Program
{
static async Task Main()
{
// Initialize client (reads STANZA_API_KEY from environment if not passed)
var client = new IataValidatorClient();
// Perform deterministic verification
string responseJson = await client.ValidateAsync("020-12345675");
Console.WriteLine(responseJson);
}
}{
"success": true,
"data": {
"valid": true,
"prefix": "020",
"airline": "Lufthansa Cargo",
"serial_number": "1234567",
"check_digit": 5
}
}Pass options directly to the IataValidatorClient constructor:
var client = new IataValidatorClient(
apiKey: "your_api_key_here",
baseUrl: "https://api.stanzaapi.com/iata-validator"
);- IATA Air Cargo AWB & Aviation Validator Interactive Sandbox
- Stanza Developer Directory
- Source Code & Issue Tracker
MIT © Stanza — Powered by Stanza.