Skip to main content
GET
/
storage
/
provisioning
/
v3
/
ssh_keys
List SSH keys
curl --request GET \
  --url https://api.gcore.com/storage/provisioning/v3/ssh_keys \
  --header 'Authorization: <api-key>'
{
  "count": 5,
  "results": [
    {
      "created_at": "2025-08-05 09:15:00+00:00",
      "id": 123,
      "name": "my-production-key",
      "public_key": "ssh-rsa AAAAB3NzaC1yc2EAAA... user@example.com"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

offset
integer<uint64>
default:0

Number of items to skip

Required range: x >= 0
limit
integer<uint64>
default:10

Maximum number of items to return

Required range: 1 <= x <= 1000
order_by
string

Field and direction to sort by (format: field.asc or field.desc)

name
string

Filter by name (partial match)

Response

SSHKeysListEndpointResV3

SSHKeysListEndpointResV3 response for listing SSH keys V3

count
integer<int64>
required

Total number of SSH keys

Example:

5

results
object[]
required

The list of SSH keys