SSH Keys
List SSH keys
get/cloud/v1/ssh_keys/{project_id}
Path parameters
project_idinteger required
Project ID
Example:1
Project ID
Query parameters
limitinteger
Maximum number of SSH keys to return
Example:100
Maximum number of SSH keys to return
namestring
SSH key name. Partial substring match. Example: name=abc matches any key containing abc in name.
Example:my-ssh-key
SSH key name. Partial substring match. Example: name=abc matches any key containing abc in name.
offsetinteger
Offset for pagination
Offset for pagination
order_by'created_at.asc' | 'created_at.desc' | 'name.asc' | 'name.desc'
Sort order for the SSH keys
Response
OK
Example response
{
"count": 1,
"results": [
{
"created_at": "2025-06-16T17:05:50Z",
"fingerprint": "86:75:ce:e7:e9:1e:f0:79:ec:6f:d8:92:9b:43:fc:4d",
"id": "36a7a97a-0672-4911-8f2b-92cd4e5b0d91",
"name": "my-ssh-key",
"project_id": 1,
"public_key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIjxL6g1II8NsO8odvBwGKvq2Dx/h/xrvsV9b9LVIYKm my-username@my-hostname",
"shared_in_project": true
}
]
}