Put sets one key to one value and returns the revision the write created.
Put sets one key to one value and returns the revision the write created.
PUT /v1/kv/{bucket}/{key}
| Address | https://api.hanzo.ai/v1/kv/{bucket}/{key} |
| Method | PUT |
| Operation | put_kv_by_bucket_by_key |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Put sets one key to one value and returns the revision the write created. Writes are versioned: each put is a new revision and the bucket retains up to its History of them per key.
Request
5 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
bucket | path | string | yes | Bucket is the bucket, from the path. |
key | path | string | yes | Key is the key, from the path. |
bucket | body | string | — | Bucket is the bucket, from the path. |
key | body | string | — | Key is the key, from the path. |
value | body | string | — | Value is the value, carried verbatim as UTF-8 text (typically JSON). |
Response
| Status | Body | Meaning |
|---|---|---|
200 | kvAck | ok |
200 body — 1 field.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
revision | body | integer | — | Revision is the revision the write created. |
Failure carries the platform error shape — see Errors.
Examples
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, KvApi } from 'hanzoai';
const api = new KvApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.putKvByBucketByKey({ bucket: 'bucket', key: 'key', bucket: "<bucket>", key: "<key>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import KvApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = KvApi(client).put_kv_by_bucket_by_key(bucket='bucket', key='key', bucket="<bucket>", key="<key>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.KvAPI.PutKvByBucketByKey(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, kv_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = kv_api::put_kv_by_bucket_by_key(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.KvApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new KvApi(client).putKvByBucketByKey();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 PUT https://api.hanzo.ai/v1/kv/<bucket>/<key> \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bucket": "<bucket>",
"key": "<key>"
}'The door declares no tool for kv — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?