OpenapiCaptable
Returns the caller org's stakeholders, newest first.
Returns the caller org's stakeholders, newest first. The response is a bare JSON array, not an envelope.
GET /v1/captable/stakeholders
| Address | https://api.hanzo.ai/v1/captable/stakeholders |
| Method | GET |
| Operation | get_captable_stakeholders |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the caller org's stakeholders, newest first. The response is a bare JSON array, not an envelope. Each row carries the holder's contact and address fields alongside the company's name.
Request
GET /v1/captable/stakeholders takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | captableStakeholder[] | ok |
200 body — 14 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
[].city | body | string | — | City is the stakeholder's city, if recorded. |
[].companyName | body | string | — | CompanyName is the name of the company whose cap table this is. |
[].country | body | string | — | Country is the stakeholder's two-letter country code. |
[].createdAt | body | integer | — | CreatedAt is when the stakeholder was added, in unix milliseconds. |
[].currentRelationship | body | string | — | CurrentRelationship is how the stakeholder relates to the company, e.g. |
[].email | body | string | — | Email is the stakeholder's email, unique within the company. |
[].id | body | string | — | ID is the stakeholder id. |
[].institutionName | body | string | — | InstitutionName names the institution, when the stakeholder is one. |
[].name | body | string | — | Name is the stakeholder's full name. |
[].stakeholderType | body | string | — | StakeholderType is INDIVIDUAL or INSTITUTION. |
[].state | body | string | — | State is the stakeholder's state or province, if recorded. |
[].streetAddress | body | string | — | StreetAddress is the stakeholder's street address, if recorded. |
[].taxId | body | string | — | TaxID is the stakeholder's tax identifier, if recorded. |
[].zipcode | body | string | — | Zipcode is the stakeholder's postal code, if recorded. |
Failure carries the platform error shape — see Errors.
Examples
hanzo captable stakeholders listimport { Configuration, CaptableApi } from 'hanzoai';
const api = new CaptableApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getCaptableStakeholders();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).get_captable_stakeholders()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.CaptableAPI.GetCaptableStakeholders(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::get_captable_stakeholders(&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).getCaptableStakeholders();curl https://api.hanzo.ai/v1/captable/stakeholders \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches captable through the captable tool, which names its 31 operations with its own verbs — this one among them, under a name only the door 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?