List your SSH keys

Retrieve a list of all SSH keys associated with your account. It also returns a `requestId` that can be used to track related operations in other API calls. This is useful for managing secure access to your services.

Headers

Accept Example
Content-Type Example

Responses

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