List drives
Lists a space's drives. Listing the drives IS listing the space's root folder, because a drive is the first segment of a key and nothing else — so the two…
GET /v1/space/{space}/drives
| Address | https://api.hanzo.ai/v1/space/{space}/drives |
| Method | GET |
| Operation | get_space_by_space_drives |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists a space's drives.
Listing the drives IS listing the space's root folder, because a drive is the first segment of a key and nothing else — so the two can never disagree the way a drives table and the keys under it would. A space the caller's org does not own is the same 404 an unknown name gives.
Billed per call: the balance is checked BEFORE anything is touched, so an unfunded org is refused with nothing read, and the debit lands only once the listing has succeeded.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
space | path | string | yes | Space is the space's name, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | space.driveList | ok |
default | problem-details | refused |
200 body — 4 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
drives | body | space.driveItem[] | — | Drives are the drives at the space's root. |
drives[].name | body | string | — | Name is the drive's name — the first segment of every key it holds. |
space | body | string | — | Space is the space that was listed. |
total | body | integer (int64) | — | Total is how many drives came back. |
Failure carries the platform error shape — see Errors.
Examples
hanzo space drives list <space>import { Configuration, SpaceApi } from 'hanzoai';
const api = new SpaceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getSpaceBySpaceDrives({ space: 'space' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import SpaceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = SpaceApi(client).get_space_by_space_drives(space='space')cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.SpaceAPI.GetSpaceBySpaceDrives(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, space_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = space_api::get_space_by_space_drives(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.SpaceApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new SpaceApi(client).getSpaceBySpaceDrives();curl https://api.hanzo.ai/v1/space/<space>/drives \
-H "Authorization: Bearer $HANZO_API_KEY"MCP declares no tool for space — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?