PromptFloe Developer Docs
PromptFloe API

Start building with PromptFloe.

Generate apps, run skills, and ship augmenters from your own code. Everything you can do inside the chat workbench is exposed via a REST + streaming API and a first-party SDK in Node, Python, and Go.

Hello world
import { PromptFloe } from '@promptfloe/sdk';

const client = new PromptFloe({
  apiKey: process.env.PROMPTFLOE_API_KEY,
});

const app = await client.apps.generate({
  prompt: 'A pricing page for a CRM SaaS',
  template: 'saas-ai-landing',
});

console.log(app.previewUrl);

#Choose how you build

#API fundamentals

#Base URL

The API is hosted at https://api.promptfloe.com in production. All resources are under /v1/. Webhook deliveries originate from the same host.

#Where to go next

PromptFloe developer docs