List your account's API keys

Retrieve a list of all API keys associated with your account. This is useful if you need to manage or review access to your services via API. Note that this endpoint returns a unique 'requestId' that can be used in subsequent calls to other API endpoints.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/keys
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/keys" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "keys": [
      "string"
    ],
    "count": 0
  }
}