Standing
Package standing prices and tracks what it costs to KEEP a company, as distinct from what it cost to form one.
Package standing prices and tracks what it costs to KEEP a company, as distinct from what it cost to form one.
| Base URL | https://api.hanzo.ai |
| Operations | 1 |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Specification
Specification pending — no HIP in hanzoai/hips declares capability: standing yet. What this capability serves is below, from the API document; what it is — the store it owns, how it meters, what it publishes — is written as a HIP under HIP-0139.
Four surfaces
| Surface | Reaches this capability as | Coverage |
|---|---|---|
| REST | standing at its own prefix | 1 operation |
| CLI | — | no command reaches it yet — use HTTP or an SDK |
| SDK | — | no published client declares one yet — regenerating the clients is what adds them |
| MCP | — | no tool names it yet — use HTTP or an SDK |
Quickstart
export HANZO_API_KEY=sk-... # console.hanzo.ai → API keysThen the first call. This one takes arguments — the placeholders are yours to fill. POST /v1/standing/upkeep, operation post_standing_upkeep:
hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.
import { Configuration, StandingApi } from 'hanzoai';
const api = new StandingApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postStandingUpkeep({ agentOfRecord: false, jurisdiction: "<jurisdiction>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import StandingApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = StandingApi(client).post_standing_upkeep(agent_of_record=False, jurisdiction="<jurisdiction>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.StandingAPI.PostStandingUpkeep(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, standing_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = standing_api::post_standing_upkeep(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.StandingApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new StandingApi(client).postStandingUpkeep();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/standing/upkeep \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agentOfRecord": false,
"jurisdiction": "<jurisdiction>"
}'The door declares no tool for standing — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
Answers 200 with object — ok.
Endpoints
| Endpoint | What it does |
|---|---|
POST /v1/standing/upkeep | Reports what keeping this entity costs every year, itemised. |
How is this guide?