Documentation
Build your life OS with our developer tools.
Authentication
Security is our top priority. All requests to the Secret Manager API must be authenticated using a standard Bearer Token mechanism.
API Keys
You can manage your API keys in the Settings > Developers section of your dashboard.
- Keys begin with
sk_live_ - Keep your keys secret. Do not commit them to public repositories.
- You can revoke a key at any time if you suspect it has been compromised.
Making Requests
Include the Authorization header in all your HTTP requests.
Authorization: Bearer sk_live_your_secret_key
⚠️ Important
Never use your API key in client-side code (browsers, mobile apps). Always route requests through your own backend server to keep your credentials secure.