Retrieve the SSH public keys stored on your account. Use an id as ssh_key_id on POST /vps/order, or in ssh_key_ids when you reinstall a VPS.
Request
Add parameter in header API-key
Example:API-key: ********************
or
Request Code Samples
curl --location 'https://mijn.host/api/v2/vps/ssh-keys' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json
{
"status": 200,
"status_description": "Request successful",
"data": {
"ssh_keys": [
{
"id": 1000,
"name": "laptop",
"type": "ssh-ed25519",
"public_key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAA... user@laptop",
"fingerprint": "oJAI9qSVVDuZVJ9K+wsrvngmE+ewwK+TjIxS9i9IMyA",
"created_at": "2026-08-28 14:12:03"
}
]
}
}
Modified at 2026-09-01 15:44:00