Check if a domain has an active hosting account

See if a specific domain is already associated with one of your hosting accounts. This helps avoid purchasing new hosting for a domain that already has an active one, or to verify the status of existing services.

Domain Services Domains

Context

Where to get IDs / values

Path Parameters

domainId integer · min: 1 required Example: 20825

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
data object required
data.availableWebhotels array<object> · Example: [{"id":"18387","name":"Start (cpanel)","domain":"example.com"}]
data.availableWebhotels[].domain string required · Example: example.com
data.availableWebhotels[].id string required · Example: 18387
data.availableWebhotels[].name string required · Example: Start (cpanel)
data.domainName string required · Example: example.com
data.found boolean required · Example: true
data.hostingAccount object
data.hostingAccount.domain string required · Example: example.com
data.hostingAccount.id string required · Example: 18387
data.hostingAccount.name string required · Example: Start (cpanel)
requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

GET https://cloud.hostup.se/api/domains/{domainId}/webhotel-check
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/20825/webhotel-check" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "found": true,
    "hostingAccount": {
      "id": "18387",
      "name": "Start (cpanel)",
      "domain": "example.com"
    },
    "domainName": "example.com"
  }
}