ProID Developer Portal

The Sovereign
OAuth Standard.

Stop sending your users' PII to servers in California. Integrate Login with ProID into your Indian applications in minutes. We guarantee 100% Data Localization, ensuring your application is fully compliant with the 2023 Digital Personal Data Protection (DPDP) Act.

Read the Docs

Quickstart

Integrate in 3 lines of code.

Our official SDKs handle the cryptographic JWT verification and OAuth 2.0 handshakes automatically. Drop in the provider, and start authenticating sovereign users immediately.

React
Next.js
Node.js
Python
Go
iOS
Android
Flutter
import { ProIDProvider, SignInButton } from '@proid/react';

export default function App() {
  return (
    <ProIDProvider 
      clientId="YOUR_CLIENT_ID" 
      region="asia-south1">
      
      <h1>Welcome to my Indian App</h1>
      <SignInButton mode="popup" />
      
    </ProIDProvider>
  );
}