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.
# 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 } }] }
Click to add tables and columns. Choose types: text, number, boolean, json. Forge stores everything safely under your account.
REST and GraphQL endpoints are generated automatically for every table. List, create, update, delete — all there.
Use the API key in Postman, your React app, your Laravel backend. Same endpoints, any client.
Plain HTTP + JSON. If your tool can make a request, it can talk to Forge. No SDK lock-in, no special clients.
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.