curl --request GET \
--url https://dashboard.hologram.io/api/1/tunnelkeys \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"disabled": 0,
"id": 1234,
"public_key": "ssh-rsa AAAAB3Nzaasdf... user@example.com",
"userid": 4321
}
],
"success": true
}List all public secure device tunneling keys.
If the org does not have a plan that supports secure device tunneling with Spacebridge, this endpoint will return with a 403.
curl --request GET \
--url https://dashboard.hologram.io/api/1/tunnelkeys \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"disabled": 0,
"id": 1234,
"public_key": "ssh-rsa AAAAB3Nzaasdf... user@example.com",
"userid": 4321
}
],
"success": true
}Documentation Index
Fetch the complete documentation index at: https://docs.hologram.io/llms.txt
Use this file to discover all available pages before exploring further.
HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.
You can find your API key on the Hologram Dashboard under Account Settings.
Was this page helpful?