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