curl --request GET \
--url https://api.example.com/v1/ssh_keys \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"key": "<string>",
"created_at": 123
}
]curl --request GET \
--url https://api.example.com/v1/ssh_keys \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"key": "<string>",
"created_at": 123
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.