Get the cap table summary
GET /api/v1/cap-table/summary
Requires role: VIEWER. No query parameters.
200 OK
string (uuid)
Your organization ID.
Total number of share classes on your cap table, including classes with zero issued shares.
integer
Total number of stakeholder records in your organization.
string
Sum of
currentSharesAuthorized across all share classes that have at least one authorized or issued share. Serialized as a string to preserve precision.string
Sum of
quantity across all ACTIVE stock securities. Serialized as a string to preserve precision.object | null
The most recent valuation with
status: "APPROVED", ordered by effectiveDate descending. null if no approved valuation exists.string (uuid)
Valuation ID. Use
GET /api/v1/valuations/{id} for full valuation details.string
Valuation type (e.g.
409A, FINANCING).Per-share value from the most recent approved valuation, serialized as a string.
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.