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.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/keys curl -X GET "https://cloud.hostup.se/api/keys" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"keys": [
"string"
],
"count": 0
}
}