Get your trust tier details

Retrieve information about your current trust tier. This tier affects various services and may grant access to faster verification processes or specific pricing. Returns a requestId for follow-up API calls, important for integration.

Query Parameters

recalculate string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/trust-tier
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/trust-tier?recalculate=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "trustTier": {
      "level": 0,
      "name": "string",
      "floatingIpQuota": 0,
      "reason": "string"
    }
  }
}