GET
/
api
/
v1
/
users
/
me
/
ssh_keys
List SSH keys
curl --request GET \
  --url https://app.miget.com/api/v1/users/me/ssh_keys \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "public_key": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Response

List SSH keys

id
integer<int32>
required

SSH key ID

public_key
string
required

SSH public key content

created_at
string<date-time>
required

Creation timestamp

updated_at
string<date-time>
required

Last update timestamp