Returns every custom hostname this site holds: the live ones, plus any pending…
Returns every custom hostname this site holds: the live ones, plus any pending claim with the DNS records it still owes.
GET /v1/projects/{slug}/domains
| Address | https://api.hanzo.ai/v1/projects/{slug}/domains |
| Method | GET |
| Operation | get_projects_by_slug_domains |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns every custom hostname this site holds: the live ones, plus any pending claim with the DNS records it still owes.
domains is the routing answer — the hosts that are verified right now —
while claims is the full panel, one row per host, each saying whether it is
live or pending and, if pending, exactly what to publish.
Scope: a validated principal is required (403 without one) and the site is resolved within that principal's org, so another tenant's slug is a 404.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
slug | path | string | yes | Slug is the project to act on, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | projectsDomains | ok |
200 body — 14 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
claims | body | projectsDomain[] | — | Claims is one row per host — live, or pending with the DNS records it still owes. |
claims[].createdAt | body | integer | — | CreatedAt is when the host was claimed, as Unix seconds — not when it went live. |
claims[].detail | body | string | — | Detail is what is holding the claim up, in words a person can act on. |
claims[].host | body | string | — | Host is the custom hostname claimed for this site. |
claims[].records | body | Record[] | — | Records are EXACTLY the DNS records to publish to prove ownership and route the host. |
claims[].records[].name | body | string | — | the record name the customer creates |
claims[].records[].type | body | string | — | TXT | CNAME |
claims[].records[].value | body | string | — | the record value |
claims[].status | body | string | — | Status is live when the edge answers for this host now, pending while the claim is waiting on DNS proof of ownership. |
claims[].url | body | string | — | URL is where the host will serve once it is live — present on a pending claim too, so a console can show the destination before it works. |
claims[].verified | body | boolean | — | Verified is the same fact as a boolean, for a caller that only needs the yes or no. |
domains | body | string[] | — | Domains are the hostnames that are VERIFIED and routing right now. |
org | body | string | — | Org is the organisation that owns the site. |
slug | body | string | — | Slug is the site the panel belongs to. |
Failure carries the platform error shape — see Errors.
Examples
hanzo projects domains list <slug>import { Configuration, ProjectsApi } from 'hanzoai';
const api = new ProjectsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getProjectsBySlugDomains({ slug: 'slug' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProjectsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProjectsApi(client).get_projects_by_slug_domains(slug='slug')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ProjectsAPI.GetProjectsBySlugDomains(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, projects_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = projects_api::get_projects_by_slug_domains(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProjectsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ProjectsApi(client).getProjectsBySlugDomains();curl https://api.hanzo.ai/v1/projects/<slug>/domains \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches projects through the projects tool, which names its 48 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": "list_projects"
}
}
}'How is this guide?