curl --request GET \
--url https://api.thundercompute.com:8443/v1/keys/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'[
{
"name": "<string>",
"public_key": "<string>",
"created_at": 123,
"fingerprint": "<string>",
"id": "<string>",
"key_type": "<string>"
}
]Get a list of all SSH keys for the authenticated user’s organization
curl --request GET \
--url https://api.thundercompute.com:8443/v1/keys/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'[
{
"name": "<string>",
"public_key": "<string>",
"created_at": 123,
"fingerprint": "<string>",
"id": "<string>",
"key_type": "<string>"
}
]Bearer token authentication. Provide your API token prefixed with "Bearer ", e.g. "Bearer your-api-token".
The body is of type object.
Was this page helpful?