
Move what matters
The city's deliveries.
Done right.
Hail a ride. Send a package. Pick up dinner. Get your prescription home. Same app. Same trusted drivers. A signed receipt at every door.

Move what matters
Hail a ride. Send a package. Pick up dinner. Get your prescription home. Same app. Same trusted drivers. A signed receipt at every door.

Every neighborhood
Vans for the long legs. Trikes and runners for the door. Fewer engines on your street. Faster handoffs at it.

Wake up to it
Pick the window. Sleep in. Your morning's already on the counter when you walk into the kitchen.

Built for the street
No phantom ETAs. No double-parked vans on your block. No surge games. Just a driver, a route, a doorbell — and a city you can still walk through.

On the road by 5 a.m.
Loads pre-staged. Drivers know their loop. By the time the rest of the city is in traffic, your order is at the door.
For developers
One SDK in five languages. Quote a job before checkout. Book on confirmation. Stream signed events to your event bus.
import { LinkClient } from "@l1fe/link";
const link = new LinkClient({
apiKey: process.env.LINK_API_KEY!,
tenant: "your-platform-id",
});
const quote = await link.quoteJob({
pickups: [/* … */],
dropoff: /* … */,
cargo: [{ cargoClass: "food-box", temperatureClass: "frozen", weightLb: 14 }],
service: "scheduled-market-day",
});
if (!quote.feasible) throw new Error(quote.reason);
const job = await link.bookJob({ quoteId: quote.id });
for await (const evt of link.streamJobEvents(job.jobId)) {
if (evt.type === "link.job.delivered.v1") break;
}The category
Platforms issue jobs. Drivers carry the capability. The Dispatch Agent decides the route. The Co-pilot rides shotgun. Every handoff is signed. Every dollar settles instantly. Every city is its own little business. Every cargo class is welcome.
— That is L1fe Link.