PAX2AIR: Bag Tagging, Simplified.
SaaS solution to deliver print-at-home bag tags with just a checkbox on your check-in page.


Simplify Bag Tagging. Save on Infrastructure.
Offer print-at-home bag tags with just a checkbox on your check-in page. No kiosks. No baggage printer integration. Just simple automation.
- 1. Passenger checks in online
- 2. Home-printed bag tag and instruction is delivered via Pax2Air platform
- 3. Drop off at the airport

Why It Matters
- Zero hardware investment Eliminate the need for dedicated printers or kiosks.
- Instant deployment Our SaaS model means no integration overhead. Just enable the feature — we handle the rest.
- Improved passenger experience Faster drop-offs, fewer touchpoints, smoother journeys.
Easy Implementation
Quick setup example using HTML and JavaScript.
HTML
<label>
<input
type="checkbox"
id="pax2air_checkbox"
name="print_at_home"
data-pax-first-name="Lena"
data-pax-last-name="Marston"
data-pax-pnr="123ABC"
data-flight-number="PX204"
data-flight-date="2025-07-07"
data-lpn=""
/>
I would like to receive a home-printed bag tag and agree to the conditions.
</label>
Javascript
document.getElementById('pax2air_checkbox').addEventListener('click', function (e) {
const checkbox = document.getElementById('pax2air_checkbox');
if (checkbox.checked) {
fetch('https://api.pax2air.com/issue-tag', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
first_name: checkbox.dataset.paxFirstName,
last_name: checkbox.dataset.paxLastName,
pnr: checkbox.dataset.paxPnr,
flight_number: checkbox.dataset.flightNumber,
flight_date: checkbox.dataset.flightDate
})
})
.then(res => res.json())
.then(data => { checkbox.dataset.lpn = data.lpn; })
} else {
checkbox.dataset.lpn = ''
}
});

Ready to Take Your Bag Tags to the Next Level?
empower your passengers with print-at-home bag tags—no kiosks, no infrastructure upgrades. Get in touch to see how easy implementation can be.
Get in Touch