Lists your organization's documents.
Lists your organization's documents.
GET /v1/trust/documents
| Address | https://api.hanzo.ai/v1/trust/documents |
| Method | GET |
| Operation | get_trust_documents |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists your organization's documents. Because this is your own centre, a gated artifact carries its address here; through the published door it does not.
Request
GET /v1/trust/documents takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | trustDocuments | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
documents | body | docRow[] | — | Documents is the list; a gated entry carries no address. |
documents[].attested | body | boolean | — | Attested reports whether somebody OUTSIDE this organization put their name to it. |
documents[].href | body | string | — | Href is where to read it, present only when this reader may. |
documents[].id | body | string | — | ID is the document's id within this organization's centre. |
documents[].kind | body | string | — | Kind is the artifact type — soc2, iso, pentest, letter, caiq, sig, vsa, questionnaire, policy or other. |
documents[].label | body | string | — | Label is the artifact type in words, for rendering. |
documents[].note | body | string | — | Note is anything the organization says about this artifact. |
documents[].released | body | boolean | — | Released reports whether THIS reader may read it. |
documents[].tier | body | string | — | Tier is "public" or "gated". |
documents[].title | body | string | — | Title is what the document is called. |
documents[].updated | body | integer | — | Updated is when the record last changed, unix milliseconds. |
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, TrustApi } from 'hanzoai';
const api = new TrustApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getTrustDocuments();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import TrustApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = TrustApi(client).get_trust_documents()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.TrustAPI.GetTrustDocuments(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, trust_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = trust_api::get_trust_documents(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.TrustApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new TrustApi(client).getTrustDocuments();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 https://api.hanzo.ai/v1/trust/documents \
-H "Authorization: Bearer $HANZO_API_KEY"The door declares no tool for trust — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?