Convergent fan-in flow
Solar project data flow diagram.
Try in PlaygroundExample brief
A technical flow diagram for a residential solar installer showing how five distinct data sources—LIDAR imagery, utility usage, credit scores, local permits, and roof assessments—converge into a centralized Site Analysis Hub. This hub performs shading and structural checks before feeding an ROI Modeling Engine, which ultimately generates outputs for the Design Pro tool and final customer contracting.
Render it
Structured intent — create_slide payload
Copy-paste-ready. Renders deterministically (verbatim, no LLM). Add a theme_id for any of the built-in themes — the layout stays identical.
{
"form": "system_flow_map",
"variant": "convergent_flow",
"headline": "Integrated property and utility data points drive precision system sizing and financing offers",
"context": "Solar project feasibility engine",
"data": {
"nodes": [
{
"id": "crm",
"label": "LIDAR mapping",
"col": 0,
"type": "data"
},
{
"id": "web",
"label": "Utility interval data",
"col": 0,
"type": "data"
},
{
"id": "camp",
"label": "Credit profile",
"col": 0,
"type": "data"
},
{
"id": "tick",
"label": "Permit history",
"col": 0,
"type": "data"
},
{
"id": "use",
"label": "Roof condition",
"col": 0,
"type": "data"
},
{
"id": "c360",
"label": "Site Analysis Hub",
"detail": "shading + structural validation",
"col": 1,
"type": "service",
"emphasis": "primary"
},
{
"id": "nba",
"label": "ROI Modeling Engine",
"col": 2,
"type": "model"
},
{
"id": "sales",
"label": "Design Pro",
"col": 3,
"type": "outcome"
},
{
"id": "mkt",
"label": "Contracting",
"col": 3,
"type": "outcome"
}
],
"edges": [
{
"from": "crm",
"to": "c360",
"kind": "data"
},
{
"from": "web",
"to": "c360",
"kind": "data"
},
{
"from": "camp",
"to": "c360",
"kind": "data"
},
{
"from": "tick",
"to": "c360",
"kind": "data"
},
{
"from": "use",
"to": "c360",
"kind": "data"
},
{
"from": "c360",
"to": "nba",
"kind": "data"
},
{
"from": "nba",
"to": "sales",
"kind": "data"
},
{
"from": "nba",
"to": "mkt",
"kind": "data"
}
]
}
}cURL (REST)
curl -X POST https://api.slideforge.dev/v1/render/intent \
-H "Authorization: Bearer sf_live_..." \
-H "Content-Type: application/json" \
-d '{"form":"system_flow_map","variant":"convergent_flow","headline":"Integrated property and utility data points drive precision system sizing and financing offers","context":"Solar project feasibility engine","data":{"nodes":[{"id":"crm","label":"LIDAR mapping","col":0,"type":"data"},{"id":"web","label":"Utility interval data","col":0,"type":"data"},{"id":"camp","label":"Credit profile","col":0,"type":"data"},{"id":"tick","label":"Permit history","col":0,"type":"data"},{"id":"use","label":"Roof condition","col":0,"type":"data"},{"id":"c360","label":"Site Analysis Hub","detail":"shading + structural validation","col":1,"type":"service","emphasis":"primary"},{"id":"nba","label":"ROI Modeling Engine","col":2,"type":"model"},{"id":"sales","label":"Design Pro","col":3,"type":"outcome"},{"id":"mkt","label":"Contracting","col":3,"type":"outcome"}],"edges":[{"from":"crm","to":"c360","kind":"data"},{"from":"web","to":"c360","kind":"data"},{"from":"camp","to":"c360","kind":"data"},{"from":"tick","to":"c360","kind":"data"},{"from":"use","to":"c360","kind":"data"},{"from":"c360","to":"nba","kind":"data"},{"from":"nba","to":"sales","kind":"data"},{"from":"nba","to":"mkt","kind":"data"}]}}'Frequently asked questions
How do I render the Convergent fan-in flow template?
Send a POST to /v1/render/auto with a brief, or call create_slide via MCP with the structured intent shown below. The response includes an editable .pptx, a PDF, and a PNG. $0.05 per slide.
Does an AI write the slide?
No. SlideForge renders deterministically from a structured intent — no LLM draws the slide, so text is never mangled or fabricated. The optional brief path uses a router to pick the pattern, then renders deterministically.
Can I customize the colors and fonts?
Yes. Pass a theme_id to apply a built-in or custom brand theme; the layout stays the same.
Try this template
Render Convergent fan-in flow deterministically — editable PowerPoint in under a second.