OpenapiCaptable
Create safes
Records a SAFE — a simple agreement for future equity.
POST /v1/captable/safes
| Address | https://api.hanzo.ai/v1/captable/safes |
| Method | POST |
| Operation | post_captable_safes |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Records a SAFE — a simple agreement for future equity.
Request
10 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
additionalTerms | body | any | — | AdditionalTerms is free text for anything the fields above do not carry. |
boardApprovalDate | body | any | — | BoardApprovalDate is when the board approved it, YYYY-MM-DD. |
capital | body | any | — | Capital is the money invested, in the company's currency. |
discountRate | body | any | — | DiscountRate is the discount to the next round's price, as a percentage. |
issueDate | body | any | — | IssueDate is when the SAFE was signed, YYYY-MM-DD. |
publicId | body | any | — | PublicID is the SAFE's identifier. |
stakeholderId | body | any | — | StakeholderID is the investor. |
status | body | any | — | Status is DRAFT, ACTIVE, PENDING, EXPIRED or CANCELLED. |
type | body | any | — | Type is PRE_MONEY or POST_MONEY — which side of the new money the cap is measured on. |
valuationCap | body | any | — | ValuationCap is the valuation the SAFE converts at, at most. |
Response
| Status | Body | Meaning |
|---|---|---|
201 | captableCreated | created |
201 body — 3 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
id | body | string | — | ID is the created row's id. |
message | body | string | — | Message is the human sentence the cap table wrote, e.g. |
success | body | boolean | — | Success is true when the row was written. |
Failure carries the platform error shape — see Errors.
Examples
hanzo captable safes createimport { Configuration, CaptableApi } from 'hanzoai';
const api = new CaptableApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postCaptableSafes({ additionalTerms: "<additionalTerms>", boardApprovalDate: "<boardApprovalDate>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import CaptableApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = CaptableApi(client).post_captable_safes(additional_terms="<additionalTerms>", board_approval_date="<boardApprovalDate>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.CaptableAPI.PostCaptableSafes(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, captable_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = captable_api::post_captable_safes(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.CaptableApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new CaptableApi(client).postCaptableSafes();curl -X POST https://api.hanzo.ai/v1/captable/safes \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"additionalTerms": "<additionalTerms>",
"boardApprovalDate": "<boardApprovalDate>"
}'MCP reaches captable through the captable tool, which names its 31 operations with its own verbs — this one among them, under a name only MCP declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_captable_classes"
}
}
}'How is this guide?