Secure Account Sharing

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.

No Shared Passwords

Users authenticate with their own FaceID or TouchID. Your password never leaves your vault.

Granular Control

Set specific permissions: Full Access, Approval Required, Scheduled, or Usage Limited.

Instant Revocation

Revoke access instantly for any user or device. Terminate active sessions with one tap.

How It Works

A seamless flow for granting and managing access

1. Request Access

The requester initiates the process by sending a request, which generates a unique 6-digit code.

2. Owner Approval

The owner enters the 6-digit code on their device to view the request and identify the requester.

3. Configuration

The owner assigns a name to the requester, selects which sites to share, and defines specific permission levels.

4. Notification & Access

The requester receives an approval notification and sees the owner in their "I'm Allowed" list.

5. Shared Usage

When visiting a shared site, the requester sees the owner's account with a shared icon and can access it based on permissions.

Try It Yourself

Experience the secure sharing flow from both perspectives.

Requester's Device
Request Access

Generate a code to share with the owner.

Share this code
829 401
Waiting for owner approval...
Access Granted!

You can now access the following:

Netflix
Shared by Dad
Owner's Device
Approve Request

Enter the code from the requester.

Invalid Code
Request from Daniel
Sharing Active

Daniel has been added to your authorized users.

Flexible Permission Models

Tailor access to fit the relationship and the sensitivity of the account.

Full Access
Family & Spouse

Unrestricted access. Ideal for shared household accounts like Netflix or Utilities.

  • No approval needed
  • 24/7 Access
Approval Required
Sensitive Accounts

Owner must approve each login attempt. Ideal for Banking or Email.

  • Real-time notification
  • 30-min timeout
Scheduled
Kids & Work

Access only during specific hours or days. Ideal for parental controls.

  • Set allowed hours
  • Auto-block off-hours
Limited Usage
Guests

Limit the number of logins or duration. Ideal for temporary access.

  • Daily/Weekly limits
  • Auto-expire

Why Use Authorized Access?

Security meets convenience.

Zero Credential Exposure

Your passwords and private keys never leave your device. You are sharing access, not secrets.

Full Audit Trail

See exactly who accessed what and when. Every login attempt is logged and visible to the owner.

Seamless Integration

Site owners don't need special integration. However, they can enforce subscription limits on the number of shared devices.

Developer API

Integrate Authorized Access management into your own dashboards.

Access Request Flow
// 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"
    }
  ]
}
Retrieving Allowed Access
// Requester fetches their "I'm Allowed" list
GET /api/v1/me/allowed-access
Authorization: Bearer {requester_token}

// Response
{
  "owners": [
    {
      "owner_name": "Dad",
      "shared_sites": [
        {
          "domain": "netflix.com",
          "icon_url": "https://...",
          "is_shared": true
        }
      ]
    }
  ]
}