Skip to main content
GET
/
v1
/
ssh-keys
curl https://gpuoutlet.ai/v1/ssh-keys --cookie "sid=$SID"
{
  "keys": [
    {
      "id": "key_01H...",
      "name": "macbook-2026",
      "fingerprint": "SHA256:Z9d...",
      "algorithm": "ssh-ed25519",
      "createdAt": "2026-06-07T08:14:22Z"
    }
  ]
}
keys
array
Newest first.
curl https://gpuoutlet.ai/v1/ssh-keys --cookie "sid=$SID"
{
  "keys": [
    {
      "id": "key_01H...",
      "name": "macbook-2026",
      "fingerprint": "SHA256:Z9d...",
      "algorithm": "ssh-ed25519",
      "createdAt": "2026-06-07T08:14:22Z"
    }
  ]
}

What’s returned

  • id — stable id (key_…)
  • name — the label you gave at creation time
  • fingerprint — SHA256 fingerprint, computed server-side, useful for matching against your local ssh-keygen -lf ~/.ssh/id_ed25519.pub
  • algorithm — usually ssh-ed25519 or ssh-rsa
  • createdAt — ISO 8601 UTC
The full public-key string isn’t returned in the list view — it’s only useful for authorized_keys injection, which the server does itself.