Open Source Modular
Logistics Platform

We help build logistics and supply chain apps faster.
Modern logistics software

An entire logistics suite at your fingertips

What's included?

A complete end to end operations system for logistics, with all the bells and whistles. API for development and integration, TMS, driver and customer ordering apps. All open source and ready to go.

How do I get started?

With Fleetbase you are free to rebrand, customize, swap components, add and remove features or service providers.

You have full control, just fork the code and build. Sky's the limit!

Visit our Github.
What If I dont have my own developers?

We are here to support businesses as well as developers.

You can use Fleetbase' entire logistics operations technology stack on a subscriptions basis, completely cloud based. You can check out our pricing here.

We also act as development support for business, you can schedule a call to learn more.

We partner with the best..

Arise Health logoThe Paak logoOE logo2020INC logoEphicient logo

View our Partners ->

Everything you need to manage logistics operations...

processing cogs image

Operations Console

Full console to manage all of your packages and custom systems.
transportation image

TMS

End to end transport management system for logistics operations management and overview.
Steering wheel image

Driver App

Open source driver app integrated into your TMS. Drivers can manage jobs, tracking and electronic POD.
Mobile phone image

On-demand / Customer App

Customer ordering app, multi vendor, multi location. Ideal for any last mile delivery or on demand service.
Cloud computing image

Developer API

Easy to use developer console which provides API usage metrics, and never miss a beat with event and request logs
Refrigerated truck image

Fleet Management

Manage all of your assets in one centralised location. Quickly assign assets to custom zones, services areas and orders.
GPS tracking image

Routing

Advanced, modern routing engine. Optimize routes for orders and save time & cost.
API computer image

Integrations

Extensive list of integrations to get you started quickly. All the way from Lala Move to Shopify. Easy to integrate API.

Support Packages

Enabling seamless implementation of Fleetbase's open source infrastructure for companies and developers.

Implementation ⚙️

We are here to help you deploy Fleetbase on any infrastructure of your choice, whether thats AWS, GCP, Azure or Digital Ocean.

Our Implementation Package includes: 
  • Full deployment of Fleetbase on your Infrastructure
  • Setting up CI/CD pipelines
  • Pointing To Custom Domain
  • Branding customization
  • Timeline: 2-3 weeks
Implement Fleetbase

Custom Logistics Development  💻

Fleetbase partners with logistics companies and engineers, providing dedicated engineering resources to implement custom logistics software development and features on top of our infrastructure. Together, we drive innovation and deliver tailored solutions for optimized logistics operations.

  • Custom feature / extension development
  • Integration services
  • Improvements and enhancements
  • Project management 
  • Bug fixes
Launch Your Project

Maintenance  📞

We will keep your Fleetbase instance up to date with the latest version as well as additional support and training.

Our Maintenance Package includes:

  • Instance upgrades with each Fleetbase Release
  • Training of new features & improvements
  • Direct communication through dedicated chat channels
  • Early release updates
  • Developer training
Get Support

Community Support ☁️

Fleetbase has a large community of developers and parters that are here to help with installation or development support. Join our Discord server or raise a new issue on our Github.

  • Community Support
  • Discord server for questions
  • Github Issues
  • Regular updates and maintenance
  • First point of contact
Join Community

Built for developers...

Ember logoReact Logo.
Svelte Logo. Vue Logo.

import Fleetbase, { Place, Entity, Payload, Point } from '@fleetbase/sdk';

const fleetbase = new Fleetbase(`{your_api_key}`);

const pickup = new Place({
    name: 'Nike Warehouse',
    location: new Point(35.0121718, -89.8945123),
});

const dropoff = new Place({
    name: 'Distribution Center',
    location: new Point(35.025949, -89.9295741),
});

const payload = new Payload({
    pickup,
    dropoff,
    entities: [
        new Entity({
            name: 'Nike Stock',
            width: 30,
            height: 42,
            length: 43,
            dimensions_unit: 'cm',
            weight: 33,
            weight_unit: 'kg',
        }),
    ],
});

fleetbase.orders.create({ payload }).then((order) => console.log(order));
  });
  
import Fleetbase from '@fleetbase/sdk';

const fleetbase = new Fleetbase('{your_api_key}');

fleetbase.orders.findRecord('{order_id}').then((order) => {
    order.assignDriver('{driver_id}');
});
  
  
import Fleetbase from '@fleetbase/sdk';

const fleetbase = new Fleetbase('{your_api_key}');

fleetbase.orders.getDistanceAndTime('{order_id}').then((dt) => {
    console.log(`Distance: ${dt.distance} & Time: ${dt.time}`);
});
  
  
import Fleetbase, { Place, Entity, Payload, Point } from '@fleetbase/sdk';

const fleetbase = new Fleetbase(`{your_api_key}`);

const pickup = new Place({
    name: 'Nike Warehouse',
    location: new Point(35.0121718, -89.8945123),
});

const dropoff = new Place({
    name: 'Distribution Center',
    location: new Point(35.025949, -89.9295741),
});

const payload = new Payload({
    pickup,
    dropoff,
    entities: [
        new Entity({
            name: 'Nike Stock',
            width: 30,
            height: 42,
            length: 43,
            dimensions_unit: 'cm',
            weight: 33,
            weight_unit: 'kg',
        }),
    ],
});

fleetbase.orders.create({ payload }).then((order) => console.log(order));
  

Ready to get started?

Self-Hosted

Run Fleetbase locally in just a few steps. You can clone whichever packages you need in just a few minutes.

Explore Docs

Cloud

For businesses looking for something off the shelf with no code required.  Start automating your logistics operations today.

Get Started