The cap table summary endpoint returns a single aggregated snapshot of your organization’s equity state: total shares authorized across all classes, total shares issued, the number of distinct share classes and stakeholders, and the most recent approved valuation. This is the fastest way to populate an ownership dashboard, generate a board-level equity summary, or run a quick sanity check during due diligence — without iterating through every security individually. Share totals are computed directly from live security records (not from denormalized counters), so the numbers you get back always reflect the current state of the ledger.Documentation Index
Fetch the complete documentation index at: https://docs.launchboard.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Get the cap table summary
GET /api/v1/cap-table/summary
Requires role: VIEWER. No query parameters.
200 OK
Your organization ID.
Total number of share classes on your cap table, including classes with zero issued shares.
Total number of stakeholder records in your organization.
Sum of
currentSharesAuthorized across all share classes that have at least one authorized or issued share. Serialized as a string to preserve precision.Sum of
quantity across all ACTIVE stock securities. Serialized as a string to preserve precision.The most recent valuation with
status: "APPROVED", ordered by effectiveDate descending. null if no approved valuation exists.Valuation ID. Use
GET /api/v1/valuations/{id} for full valuation details.Valuation type (e.g.
409A, FINANCING).Per-share value from the most recent approved valuation, serialized as a string.
Date the valuation took effect (
YYYY-MM-DD).Common uses
Ownership dashboard — Poll this endpoint on page load to display headline equity metrics (shares issued, authorized headroom, current 409A price) without fetching individual securities. Investor reporting — UsetotalIssued and totalAuthorized to populate the cover page of board materials or investor updates.
Due diligence — Cross-check shareClassCount and stakeholderCount against your cap table records during a financing or acquisition process.
Reconciliation — Compare totalIssued against the sum of individual security quantities to verify ledger integrity.
Error codes
| Status | When it occurs |
|---|---|
401 | Missing or invalid API key. |
429 | Rate limit exceeded. Retry after the interval in the Retry-After header. |