One platform. Three products.
HAYLO Desk, HAYLO Drive, and HAYLO Market — one system for Greek road freight, powered by Loopback. Free TMS, fair marketplace, no empty miles.
ONE SYSTEM · ONE API
From empty to earning.
Free TMS. Fair marketplace. No empty miles.
The products.
HAYLO Desk
Run every shipment from one screen. Free, forever, in Greek.
HAYLO Drive
Declare your route. Get paid for the way back.
HAYLO Market
The freight that finds your truck.
Loopback
The return-trip engine. No mile runs empty.
// mock — pre-GA
// Create a shipment programmatically (same call HAYLO Desk makes)
import { Haylo } from '@haylo/sdk';
const haylo = new Haylo({ apiKey: process.env.HAYLO_API_KEY });
const shipment = await haylo.shipments.create({
origin: 'Athina',
destination: 'Thessaloniki',
cargoType: 'refrigerated', // triggers temperature sub-fields
tempRangeC: { min: 2, max: 6 },
weightKg: 8_200,
pickupAt: '2026-06-11T06:00:00+03:00',
deadlineAt: '2026-06-11T16:00:00+03:00',
});
// On completion, an AADE/myDATA-compliant invoice is generated automatically
const invoice = await haylo.invoices.fromShipment(shipment.id);
console.log(invoice.mydataStatus); // 'transmitted' (confirmation code stored)One platform. One API.
Dispatch, track, invoice, and book capacity through one RESTful API — OpenAPI 3.0, versioned, EU-hosted.