Check if a domain has a web hosting account linked.

Use this endpoint to quickly see if a specific domain has a web hosting account with us. This is useful for troubleshooting or understanding active services for a domain. The endpoint returns an ID needed for follow-up calls and requires a domain ID from other endpoints.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/domains/{domainId}/webhotel-check
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/20495/webhotel-check" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "found": true,
    "hostingAccount": {
      "id": "string",
      "name": "string",
      "domain": "string"
    },
    "domainName": "string"
  }
}