Check verification and cloud access status

Check the status of verification processes and cloud access settings for your account. It returns a `requestId` for following up on specific operations in subsequent calls.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/verify/status
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/verify/status" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "verified": true,
    "verification": "string",
    "cloudAccess": {
      "enabled": true,
      "limits": "string",
      "usage": "string"
    },
    "pendingRequests": [
      "string"
    ]
  }
}