OpenapiCompliance
Returns the org's KYC/KYB verifications, newest first — opaque subject…
Returns the org's KYC/KYB verifications, newest first — opaque subject references and provider-reported statuses only, no subject PII.
GET /v1/compliance/verifications
| Address | https://api.hanzo.ai/v1/compliance/verifications |
| Method | GET |
| Operation | get_compliance_verifications |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the org's KYC/KYB verifications, newest first — opaque subject references and provider-reported statuses only, no subject PII.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | — | Limit caps the rows returned; non-positive means the server default. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | checkList | ok |
200 body — 12 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | checkView[] | — | Data is the org's verifications, newest first, without subject PII. |
data[].createdAt | body | integer | — | CreatedAt is the unix second the verification was started. |
data[].decidedAt | body | integer | — | DecidedAt is the unix second a terminal status was recorded. |
data[].decidedBy | body | string | — | DecidedBy records who settled a terminal status: the provider name, or a reviewer's user id for a recorded manual decision. |
data[].id | body | string | — | ID is the verification's opaque id. |
data[].kind | body | string | — | Kind is the party type: "individual" (KYC) or "business" (KYB). |
data[].provider | body | string | — | Provider is the verification provider this check runs through. |
data[].status | body | string | — | Status is the check's state: pending, provider_verified, provider_rejected, manual_review, or expired (provider-reported), or reviewer_confirmed — the one… |
data[].subjectId | body | string | — | SubjectID is the opaque id of the subject under verification. |
data[].updatedAt | body | integer | — | UpdatedAt is the unix second the verification last changed. |
data[].verifyUrl | body | string | — | VerifyURL is the provider's hosted verification flow for the subject, when one exists. |
disclaimer | body | string | — | Disclaimer states that statuses are provider-reported, never a platform assertion of legal or regulatory compliance. |
Failure carries the platform error shape — see Errors.
Examples
hanzo compliance verifications listimport { Configuration, ComplianceApi } from 'hanzoai';
const api = new ComplianceApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getComplianceVerifications();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ComplianceApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ComplianceApi(client).get_compliance_verifications()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ComplianceAPI.GetComplianceVerifications(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, compliance_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = compliance_api::get_compliance_verifications(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ComplianceApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ComplianceApi(client).getComplianceVerifications();curl https://api.hanzo.ai/v1/compliance/verifications \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches compliance through the compliance tool, which names its 17 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_compliance_accreditation"
}
}
}'How is this guide?