Flowbase SAAS

How it works

From event to resolution
in three moves.

step 1 · ingest.ts
// Stream product events to Flowbase
import { Flowbase } from "@flowbase/sdk";

const fb = new Flowbase(process.env.FB_KEY);

await fb.events.ingest({
  source: "web-app",
  name:   "checkout.failed",
  props:  { plan: "scale", amount: 2400, region: "eu-west" },
});

// schema coerced automatically ✓
// backfill enabled by default ✓

preview updates as you select a step