Get status and pricing for the Floating IP service

Check if Floating IP is enabled for your account, view your current tier and quota, and see pricing. It also returns a unique ID for subsequent calls to manage or verify the service.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/floating-ip
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/floating-ip" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "enabled": true,
    "message": "string",
    "trustTier": {
      "level": 0,
      "name": "string",
      "floatingIpQuota": 0,
      "reason": "string",
      "pricing": {
        "hourly": 0,
        "monthly": 0,
        "currency": "string"
      }
    },
    "pricing": {
      "hourly": 0,
      "monthly": 0,
      "currency": "string"
    }
  }
}