backend-as-a-service · multi-tenant · v0.1

Spin up a database.
Get an API.
Done.

Forge is a developer console for shipping backends without writing one. Define your tables in the browser, get auto-generated REST + GraphQL endpoints, and call them from React, Laravel, Postman — anywhere.

~ curl forge.api
# list rows in your table
$ curl https://forge.app/api/public/v1/my-app/products \
     -H "x-api-key: fk_a3f9...c2e1"

{ "data": [{ "id": "...", "data": { "name": "Forge T-Shirt", "price": 29 } }] }
// how it works

Three steps. No backend code.

01 / Design tables

Click to add tables and columns. Choose types: text, number, boolean, json. Forge stores everything safely under your account.

02 / Get endpoints

REST and GraphQL endpoints are generated automatically for every table. List, create, update, delete — all there.

03 / Call from anywhere

Use the API key in Postman, your React app, your Laravel backend. Same endpoints, any client.

// integrations

Works with your stack.

Plain HTTP + JSON. If your tool can make a request, it can talk to Forge. No SDK lock-in, no special clients.

React / Next
Vue / Nuxt
Laravel / PHP
Python / Django
Postman / Insomnia
curl / fetch
iOS / Swift
Android / Kotlin
// react example
const res = await fetch(
"/api/public/v1/my-app/products",
{ headers: { "x-api-key": KEY } }
);
const { data } = await res.json();

// data is your rows. that's the whole SDK.

Your first project is one click away.

Sign up, create a project, get your API key. Free to try.