Three copy-paste templates that show the full stack in action — plus framework quickstarts for React, Vue, Svelte, and Astro.
Auth + DB + role-gated dashboard shell
curl -X POST https://api.agentbuilders.app/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"saas-dashboard","files":{"index.html":"<!doctype html><html><body><h1>Dashboard</h1><p>Auth + DB ready.</p></body></html>"},"enable_auth":true,"database_tables":{"projects":{"name":"TEXT","status":"TEXT"},"users":{"email":"TEXT","role":"TEXT"}}}'Marketing landing page with form + webhook callback
curl -X POST https://api.agentbuilders.app/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"lead-capture","files":{"index.html":"<!doctype html><html><body><h1>Join the waitlist</h1><form method=\"post\" action=\"/_api/forms/waitlist\"><input name=\"email\"/><button>Join</button></form></body></html>"}}'File upload + storage-backed gallery starter
curl -X POST https://api.agentbuilders.app/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"image-gallery","files":{"index.html":"<!doctype html><html><body><h1>Gallery</h1><p>Upload files to /_api/files</p></body></html>"},"enable_files":true}'