---
title: "List SSH keys"
method: GET
path: "/api/v1/ssh-keys"
tags: ["SSH Keys"]
---

# List SSH keys

`GET /api/v1/ssh-keys`

List SSH keys for the authenticated account. SSH keys are account-level — no project scoping.

## Response `200`

List of SSH keys

- object
  - `success` boolean
  - `data` SSHKey[]
    - `id` string, uuid, required — SSH key ID
    - `name` string, required — SSH key display name
    - `public_key` string, required — Full SSH public key string (e.g. `ssh-ed25519 AAAA... user@host`)
    - `key_type` 'ssh-rsa' | 'ssh-ed25519' | 'ecdsa-sha2-nistp256' | 'ecdsa-sha2-nistp384' | 'ecdsa-sha2-nistp521', required — Parsed key algorithm
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
