Skip to main content
GET
/
v1
/
ssh_keys
Get Ssh Keys
curl --request GET \
  --url https://api.example.com/v1/ssh_keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "key": "<string>",
    "created_at": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

xi-api-key
string | null

Response

Successful Response

id
string
required

SSH Key ID

name
string
required

SSH Key name

Minimum string length: 1
key
string
required

SSH Key content

Minimum string length: 1
created_at
integer