Get your cost control budget settings

Retrieve your current cost control budget settings, including monthly and annual budgets, and alert thresholds. It also returns a request ID that can be used for follow-up API calls related to cost management, necessary for completing certain administrative processes.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/cost-management/budget
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/cost-management/budget" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "monthly_budget": "string",
    "annual_budget": "string",
    "alert_threshold": 0,
    "email": "string",
    "active": true
  }
}