Skip to main content
Tunneling keys are the public keys used to authenticate Spacebridge tunnels to your devices. Use the REST API to list the existing keys for your organization.
cURL
curl --request GET \
  'https://dashboard.hologram.io/api/1/tunnelkeys?withdisabled=0&orgid=YOUR_ORG_ID' \
  -u apikey:YOUR_HOLOGRAM_API_KEY
Find your orgid in your organization overview. Example response:
{
  "success": true,
  "data": [
    { "id": 12345, "userid": 12345, "disabled": 0, "public_key": "YOUR_PUBLIC_KEY_HERE" }
  ]
}

Add tunneling keys via API

Enable/disable tunneling keys via API