Owner
Family (Full)
Guest (Limited)
Securely share account access with family and friends without sharing passwords. You control who gets access, to what, and for how long.
The end of password sharing. Grant access to your accounts securely, managed entirely through your device.
Authorized Access allows you to share access to your digital accounts (like streaming services, banking, or utilities) with trusted individuals without ever revealing your credentials. Authorized users authenticate using their own biometrics on their own devices, while you maintain full control over permissions.
Users authenticate with their own FaceID or TouchID. Your password never leaves your vault.
Set specific permissions: Full Access, Approval Required, Scheduled, or Usage Limited.
Revoke access instantly for any user or device. Terminate active sessions with one tap.
A seamless flow for granting and managing access
The requester initiates the process by sending a request, which generates a unique 6-digit code.
The owner enters the 6-digit code on their device to view the request and identify the requester.
The owner assigns a name to the requester, selects which sites to share, and defines specific permission levels.
The requester receives an approval notification and sees the owner in their "I'm Allowed" list.
When visiting a shared site, the requester sees the owner's account with a shared icon and can access it based on permissions.
Tailor access to fit the relationship and the sensitivity of the account.
Unrestricted access. Ideal for shared household accounts like Netflix or Utilities.
Owner must approve each login attempt. Ideal for Banking or Email.
Access only during specific hours or days. Ideal for parental controls.
Limit the number of logins or duration. Ideal for temporary access.
Security meets convenience.
Your passwords and private keys never leave your device. You are sharing access, not secrets.
See exactly who accessed what and when. Every login attempt is logged and visible to the owner.
Site owners don't need special integration. However, they can enforce subscription limits on the number of shared devices.
Integrate Authorized Access management into your own dashboards.
// 1. Requester generates a request code POST /api/v1/access-requests/generate Authorization: Bearer {requester_token} { "device_id": "device_iphone_13_xyz" } // Response { "request_code": "829401", "expires_in_seconds": 300 } // 2. Owner approves the request using the code POST /api/v1/access-requests/approve Authorization: Bearer {owner_token} { "request_code": "829401", "requester_label": "Daniel (Son)", "permissions": [ { "site_id": "netflix_com", "access_level": "full" } ] }