v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
SSHKeys

List SSH keys

Returns a paginated list of all SSH public keys for SFTP storage access.

get/storage/v4/ssh_keys

Query parameters

offsetinteger

Number of items to skip

limitinteger

Maximum number of items to return

order_bystring
namestring

Filter by name (partial match)

Response

SSHKeysListEndpointResV4

countinteger required

Total number of SSH keys

Example response

{
  "count": 5,
  "results": [
    {
      "created_at": "2025-08-05T09:15:00Z",
      "id": 123,
      "name": "my-production-key",
      "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAA... user@example.com"
    }
  ]
}