Open Source API Management Made Easy
Open Source API Management Made Easy.
Database API Gateway
Unlock legacy databases and expose them via modern REST APIs.
Custom Backend Logic for APIs
Build and manage custom business logic tailored to your domain.
Gateway for Microservices
Route, orchestrate, and secure traffic between internal services.
API Developer Portal
Provide docs, testing, and SDKs for internal or external developers.
API Monetization
Enable freemium or tiered access with quotas, limits, and billing hooks.
Fast API Prototyping
Quickly scaffold APIs for testing, MVPs, or frontend-backend integration.
API Usage Analytics
Monitor traffic, detect issues early, and understand API consumption.
Headless CMS Backend
Manage and expose structured content to any frontend via APIs.
SDK Automation
Automatically generate ready-to-use client SDKs (PHP, TypeScript, Python, etc.).
Download artifact
You can either download the official release or clone the repository.
git clone https://github.com/apioo/fusio.git
Set up your .env
Configure fitting database credentials at the
APP_CONNECTION
variable, all other parameters are optional.
- MySQL:
pdo-mysql://root:test1234@localhost/fusio
- PostgreSQL:
pdo-pgsql://postgres:postgres@localhost/fusio
- SQLite:
pdo-sqlite:///fusio.sqlite
Run migrations
php bin/fusio migrate
Create administrator user
After the installation is complete, you have to create a new administrator account. Choose as account type βAdministratorβ.
php bin/fusio adduser
Install backend app
php bin/fusio marketplace:install fusio
Start via PHP built-in server
This should be only used for testing, for production you need a classical Nginx/Apache setup or use Docker, take a look at our installation documentation for more details.
php -S 127.0.0.1:8080 -t public
Instead of manual installation you can also use the web installer script located at /install.php
to complete the installation. After installation, it is recommended to delete this βinstallβ script.
To run Fusio with Docker you only need the official Fusio docker image
and a database. The following example shows a minimal docker-compose.yaml
which you can use to run Fusio.
version: '3'
services:
fusio:
image: fusio/fusio
restart: always
environment:
FUSIO_PROJECT_KEY: "42eec18ffdbffc9fda6110dcc705d6ce"
FUSIO_CONNECTION: "pdo-mysql://fusio:61ad6c605975@mysql-fusio/fusio"
FUSIO_BACKEND_USER: "test"
FUSIO_BACKEND_EMAIL: "[email protected]"
FUSIO_BACKEND_PW: "test1234"
links:
- mysql-fusio
ports:
- "8080:80"
mysql-fusio:
image: mysql:8.0
restart: always
environment:
MYSQL_RANDOM_ROOT_PASSWORD: "1"
MYSQL_USER: "fusio"
MYSQL_PASSWORD: "61ad6c605975"
MYSQL_DATABASE: "fusio"
volumes:
- ./db:/var/lib/mysql
Fusio includes a flexible app system that lets you install various web-based apps to support
different API-related use cases. These apps are typically simple JavaScript frontends that
interact with Fusioβs internal API.
You can browse all available apps in the Fusio Marketplace,
and install them using either the CLI:
php bin/fusio marketplace:install fusio
or directly through the backend interface.
The backend app is the main app to configure and manage your API located at /apps/fusio/
.
Fusio provides a VSCode extension
which can be used to simplify action development.
To build and integrate applications with Fusio, you can use one of our officially supported SDKs, which simplify interaction with a Fusio instance. Alternatively, you can directly communicate with the REST API for full control and flexibility.
Language | GitHub | Package | Example |
---|---|---|---|
C# | GitHub | NuGet | Example |
Go | GitHub | Example | |
Java | GitHub | Maven | Example |
Javascript | GitHub | NPM | |
PHP | GitHub | Packagist | Example |
Python | GitHub | PyPI | Example |
Framework | GitHub | Package | Example |
---|---|---|---|
Angular | GitHub | NPM | Example |
Domain | Documentation | Specification |
---|---|---|
Backend | ReDoc | OpenAPI |
Consumer | ReDoc | OpenAPI |
System | ReDoc | OpenAPI |
Besides our core product, we offer additional services to augment the functionality of Fusio.
By default, the entire Fusio project can be hosted on a single domain. In this setup:
/apps
directory (e.g., https://acme.com/apps/developer).This setup is quick to get started with and requires no additional configuration.
For production environments, we recommend a subdomain-based structure:
apps/
folder from the public/
directory.Note: This is just a suggested setup. Youβre free to choose any domain or subdomain structure that best fits your infrastructure.
Please check out our official documentation website where we bundle all documentation resources:
https://docs.fusio-project.org/
If you have questions or run into issues while using Fusio:
If youβre a company or freelancer looking for more tailored help, please check out our consulting services below.
Are you a blogger, writer, or run a developer-focused publication? Weβd love for you to cover Fusio!
Visit the Media Page to download official icons for use in your articles or videos.
For companies or freelancers who want in-depth guidance on using and integrating Fusio:
Feel free to contact us for more details.
If Fusio helps you build APIs faster or adds value to your projects, please consider supporting our work:
Every bit of support helps us continue improving the platform!
Weβre grateful to our partners who support the Fusio project and share our vision of advancing open API development.
If your company is interested in becoming a partner and being listed here, consider becoming a sponsor.