Get status of a domain check

Retrieve the status and results of a previously initiated domain check. Use the jobId returned from POST /api/domain-check to get the result.

Path Parameters

jobId string required Example

jobId parameter

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
error string
message string
retryAfter string
404
error string
message string
code string
timestamp string
requestId string
429
error string
message string
retryAfter string
requestId string
GET https://cloud.hostup.se/api/domain-check/{jobId}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-check/check-adr-1767678956038" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "status": "string",
    "progress": 0,
    "message": "string"
  },
  "error": "string",
  "message": "string",
  "retryAfter": "string"
}