Skip to main content
If you use tools like Lovable, Bolt, Cursor, or v0, the Design Doc artifact is your most powerful tool.

What Is It?

The Design Doc is a Markdown file generated specifically to be read by LLMs. It removes the fluff and provides exactly what an AI needs to write code against your API:
  • Context - High-level architecture summary
  • Authentication - Exact headers and token flows required
  • Type Definitions - Full TypeScript interfaces for your entities
  • Endpoints - Compact list of routes, methods, and parameters
  • Examples - Usage patterns

Why It Matters

When you paste the Design Doc into an AI assistant’s context, it understands: ✅ Exactly which endpoints exist ✅ What parameters each endpoint accepts ✅ How to authenticate requests ✅ The shape of response data No hallucination. The AI won’t make up endpoints that don’t exist.

Sample Design Doc

How to Use It

1

Download the Design Doc

Go to Artifacts tab → Click Design Doc → Download
2

Copy to Clipboard

Or click Copy to copy the full document
3

Paste into AI Tool

Paste into Lovable, Bolt, Cursor, or v0’s context window
4

Prompt

“Build a dashboard using this backend”

Integration Examples

With Lovable

With Cursor

With v0

Dynamic URLs

The Design Doc automatically includes your deployed API URL, not a placeholder. After deployment, it shows:
This means AI-generated code will work immediately without URL updates.

Updating the Design Doc

The Design Doc regenerates whenever you:
  • Apply a new spec
  • Generate a new blueprint
  • Deploy changes
Always use the latest version after making changes.

SDKs

Get pre-built Python and TypeScript clients.