Cap Table Summary Slide Template
Investor-deck cap table summary with two panes. DONUT (left) shows ownership proportion; structured TABLE (right) shows holder, class, shares, and derived %. Standard 409A, Series A/B term-sheet, and dilution walkthrough visual. IMPORTANT: shares must be absolute integer counts (e.g. 4500000), not abbreviated strings like '4.5M' or '4.5 million' — the component converts strings to integers via transform but cleanest output comes from integer inputs.
Try in PlaygroundParameters
Example brief
Post-Series A cap table: Founders 4.5M common, Series A lead 2.5M preferred, employee options 1.5M, angels 1M preferred, advisor warrants 500K.
API example
With a brief (async, $0.05)
curl -X POST https://api.slideforge.dev/v1/render \
-H "Authorization: Bearer sf_live_..." \
-H "Content-Type: application/json" \
-d '{
"template": "f0f80731-78cc-56d8-bf19-f43a34a8a10e",
"brief": "Post-Series A cap table: Founders 4.5M common, Series A lead 2.5M preferred, emp..."
}'With structured params (sync, $0.03)
curl -X POST https://api.slideforge.dev/v1/render \
-H "Authorization: Bearer sf_live_..." \
-H "Content-Type: application/json" \
-d '{
"template": "f0f80731-78cc-56d8-bf19-f43a34a8a10e",
"params": {
"title": "Founder ownership at 45% post-Series A — aligned with investor expectations",
"holders": [
{
"label": "Founders",
"shares": 4500000,
"class": "common"
},
{
"label": "Series A lead",
"shares": 2500000,
"class": "preferred"
},
{
"label": "Employee options",
"shares": 1500000,
"class": "options"
},
{
"label": "Angels",
"shares": 1000000,
"class": "preferred"
},
{
"label": "Advisor warrants",
"shares": 500000,
"class": "warrants"
}
],
"takeaway": "Employee pool at 15% provides 2-year runway for hiring through Series B without re-expanding."
}
}'Tags
Related templates
Dashboard
Executive KPI dashboard. 4-9 metrics rendered as a Metric grid with value, label, and delta. The 'war room' 1-pager — at-a-glance status across revenue, growth, retention, efficiency.
Metric With Context
Split layout with 1-3 KPI metrics on the left and narrative context or analysis on the right. Combines data and storytelling.
Stat Highlight
Single dramatic statistic displayed large and centered with a label, context line, and optional source. Use to make one number the hero.
TAM SAM SOM
Concentric circles showing Total Addressable Market (TAM), Serviceable Addressable Market (SAM), and Serviceable Obtainable Market (SOM). Each ring has a label and dollar/unit value. Standard investor deck visual for market sizing.
Frequently asked questions
How do I render a Cap Table Summary slide?
Send a POST request to /v1/render with template "f0f80731-78cc-56d8-bf19-f43a34a8a10e" and your data in the params field. The response includes a .pptx download URL and PNG preview. Template renders cost $0.03 and complete in under 1 second.
What data does the Cap Table Summary template accept?
The Cap Table Summary template accepts: title, holders, takeaway. Supports 3-10 items. See the parameter reference below for details.
Can I customize the colors and fonts of this template?
Yes — pass a theme_id parameter to apply your custom brand colors, fonts, and logo. SlideForge has 8 built-in themes, or you can create custom themes via the Themes API.
Try this template
Render a Cap Table Summary slide in under 1 second. $3 free credit, no card required.