Returns every deployable blueprint with its service count and estimated monthly…
Returns every deployable blueprint with its service count and estimated monthly compute cost.
GET /v1/blueprint
| Address | https://api.hanzo.ai/v1/blueprint |
| Method | GET |
| Operation | get_blueprint |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns every deployable blueprint with its service count and estimated monthly compute cost.
It is the lightweight index the console renders as a template gallery before drilling into one stack's bill of images — GET /v1/blueprint/sbom?template=<id> is the detail view. The cost is the same figure the deploy path meters the deploying org on and the 20% author royalty is taken from, priced from the active rate card (GET /v1/blueprint/health echoes that card).
Request
GET /v1/blueprint takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | blueprintIndex | ok |
200 body — 4 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | blueprintRow[] | — | Data is one row per embedded blueprint, sorted by template id. |
data[].estCentsPerMonth | body | integer | — | CentsPerMonth is the estimated compute cost of running the whole stack for one month, in USD cents, from the rate card GET /v1/blueprint/health echoes. |
data[].services | body | integer | — | Services is how many compose services the stack runs. |
data[].templateId | body | string | — | TemplateID is the blueprint slug — the id GET /v1/blueprint/sbom takes as ?template= and the path under templates.hanzo.ai/blueprints/<id>/. |
Failure carries the platform error shape — see Errors.
Examples
hanzo blueprint getimport { Configuration, BlueprintApi } from 'hanzoai';
const api = new BlueprintApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getBlueprint();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import BlueprintApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = BlueprintApi(client).get_blueprint()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.BlueprintAPI.GetBlueprint(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, blueprint_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = blueprint_api::get_blueprint(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.BlueprintApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new BlueprintApi(client).getBlueprint();curl https://api.hanzo.ai/v1/blueprint \
-H "Authorization: Bearer $HANZO_API_KEY"Tool blueprint, op get_blueprint — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "blueprint",
"arguments": {
"op": "get_blueprint",
"input": {}
}
}
}'How is this guide?