Documentation

Everything you need to integrate and use Flow Scribe

Quick Start

Get up and running with Flow Scribe in under 5 minutes.

View Guide

API Reference

Complete reference for all Flow Scribe APIs and SDKs.

Explore API

Integrations

Connect Flow Scribe with your existing tools and workflows.

View Integrations

Guides & Tutorials

Step-by-step tutorials for common use cases and patterns.

Browse Guides

Quick Example

// Install the SDK
npm install @flowscribe/sdk
// Initialize in your app
import { FlowScribe } from '@flowscribe/sdk'
const scribe = new FlowScribe({ apiKey: process.env.FLOWSCRIBE_API_KEY })
// Start recording a process
const flow = scribe.startFlow("checkout-process")
flow.step("validate-payment", { amount: 99.99 })
flow.step("create-order", { orderId: "4782" })
flow.complete()
// Flow Scribe automatically generates documentation!

Need Help?

Our team is here to help you succeed with Flow Scribe