Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all domains linked to the current organisation with their verification status, HTTP health and DNS information.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemCountnumberRequiredTotal number of domains.
itemsobject[]RequiredList of domain items.
idstringRequiredDomain identifier (domain name or fallback ID).
example.comdomainVerifiedbooleanRequiredWhether domain ownership has been verified.
environmentstringOptionalEnvironment label (e.g. production, staging).
productionlabelstringOptionalCustom label for the domain.
descriptionstringOptionalCustom description.
domainstringOptionalFully qualified domain name.
example.cominsertedDateDate | string | string | numberOptionalWhen the domain was first added.
When the domain was first added.
lastCheckDateDate | string | string | numberOptionalLast health check timestamp.
Last health check timestamp.
httpCodenumberOptionalLast HTTP status code.
200httpsSupportbooleanOptionalWhether the domain supports HTTPS.
titlestringOptionalPage title from last crawl.
responseTimenumberOptionalResponse time in milliseconds.
uptimeOkbooleanOptionalWhether the domain is considered up.
{
"itemCount": 0,
"items": [
{
"id": "example.com",
"domainVerified": false,
"environment": "production",
"label": "example_label",
"description": "example_description",
"domain": "example.com",
"httpCode": 200,
"httpsSupport": false,
"title": "example_title",
"responseTime": 0,
"uptimeOk": false
}
]
}GET /bff/domain/list
curl -X GET "https://api.bizkithub.com/bff/domain/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.