Extend, Customize, and Build on Fleetbase
The Extensions Marketplace is where the Fleetbase platform grows. Browse and install extensions built by Fleetbase and the open-source community — or publish your own and monetize it to reach thousands of logistics operators worldwide.

60+
Extensions available
8
Categories
Free
Core extensions
Open
Publisher platform
Extend your platform in minutes, not months
Installing an extension takes seconds. Browse the marketplace, click install, and the new capability is immediately available in your Fleetbase console — no restarts, no deployments, no engineering required.
Browse & discover
Search by category, keyword, or publisher. Read descriptions, view screenshots, and check ratings before installing.
One-click install
Free extensions install instantly. Paid extensions prompt a secure checkout, then activate immediately on confirmation.
Manage & update
View all installed extensions from one dashboard. Receive update notifications and uninstall with one click.
Self-managed install
Running self-hosted? Every extension includes step-by-step instructions for your own infrastructure.

Featured extensions
First-party modules from Fleetbase and top community extensions — install any of them in one click from the console.
FleetOps
Core TMS and fleet management — orders, drivers, routes, and real-time tracking.
Storefront
Headless e-commerce and on-demand ordering with native delivery integration.
Pallet WMS
Warehouse management with inventory tracking, pick lists, and fulfilment.
Ledger
Double-entry accounting engine for logistics finance, invoicing, and payouts.
HERE Maps
Replace the default mapping layer with HERE Maps for enhanced routing.
WhatsApp Notifications
Send order status updates and driver alerts via WhatsApp Business API.
Browse by category
Find extensions that match your operational needs across every area of logistics.
Fleet & Dispatch
12 extensions
Mapping & Routing
8 extensions
Payments & Billing
9 extensions
Inventory & WMS
6 extensions
Integrations
15 extensions
Analytics & Reports
7 extensions
Communication
5 extensions
Security & Auth
4 extensions
Plug into the tools you already use
Fleetbase connects natively to 32+ services across maps, payments, communication, cloud, and developer tooling — through first-party extensions, the REST API, and webhooks.
Maps & Location
Routing & Optimization
VROOMTelematics & Fleet Hardware
Payments
Communication
Cloud & Infrastructure
Databases
Developer Tools
Monitoring
E-commerce
Mobile
Backend & Framework
Don't see what you need? Build your own integration or talk to us.

Build once. Sell to thousands of logistics operators.
The Fleetbase developer platform gives you everything you need to build, publish, and monetize extensions — without managing your own distribution or payment infrastructure.
Developer account & credentials
Create a developer account, generate registry credentials, and authenticate your publishing pipeline in minutes.
Extension builder & bundles
Create listings with descriptions and screenshots. Package multiple versions or configs as bundles.
Built-in monetization
Connect Stripe and set your own pricing. The marketplace handles payment processing, licensing, and access control.
Analytics & revenue tracking
Track installs, active users, revenue, and conversion rates from your developer dashboard in real time.
From idea to paying customers in four steps
The publishing workflow is designed to get your extension listed and earning as quickly as possible.
Build
Scaffold your extension with the CLI, add your frontend and backend logic, and test against a local Fleetbase instance.
Review
Submit for review. Our team checks quality, security, and compatibility. Most extensions are reviewed within 48 hours.
Publish
Once approved, your extension goes live in the marketplace and is immediately discoverable by all Fleetbase operators.
Monetize
Connect Stripe, set your price, and start earning. Fleetbase takes a small platform fee; the rest goes directly to you.
Payouts powered by Stripe — direct deposits, no invoicing back-and-forth.
A full-stack extension framework
Fleetbase extensions are full-stack modules — an Ember.js frontend engine and a Laravel backend package — giving complete control over both the console UI and server-side logic.
Frontend: Ember.js Engine
The frontend is an Ember.js engine that integrates seamlessly into the Fleetbase console. Extensions can add new routes, components, dashboards, and widgets that feel native to the platform.
- Custom routes and navigation
- Reusable UI components
- Dashboard widgets
- Full access to Fleetbase UI library
Backend: Laravel Package
The backend is a Laravel package that integrates with the Fleetbase API layer. Extensions can define new models, API endpoints, migrations, jobs, events, and webhooks.
- Custom data models and migrations
- New REST API endpoints
- Background jobs and queues
- Custom events and webhooks
1# Install the Fleetbase CLI
2npm install -g @fleetbase/cli
3
4# Register a developer account
5flb register
6
7# Verify your email
8flb verify
9
10# Scaffold a new extension
11flb scaffold --name my-extension --author "Your Name"
12
13# my-extension/
14# ├── addon/ Ember.js frontend engine
15# │ ├── routes/
16# │ ├── components/
17# │ └── engine.js
18# └── server/ Laravel backend package
19# ├── src/
20# └── composer.json
21
22# Bundle and publish to the registry
23flb publishGet started building your extension in minutes with the official scaffold CLI. Read the docs