Get a log of credit transactions on your account

Get a detailed history of all credit transactions on your account. Use this to see how your credits have been used or added, such as with service purchases or manual adjustments. The endpoint also returns a requestId for follow-up actions.

Query Parameters

page string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
403
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/billing/credit-log
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/billing/credit-log?page=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "log": [
      "string"
    ],
    "hasMore": true,
    "success": true
  }
}