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.
path.domainId domainId integer · min: 1 required
Example: 20825 Unique domain identifier
Accept Example Content-Type Example 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).
https://cloud.hostup.se/api/domains/{domainId}/webhotel-check curl -X GET "https://cloud.hostup.se/api/domains/20825/webhotel-check" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"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"
}
}