Your sanctuarized digital identity

A universal, secure and open identity service for all your projects.

An identity foundation built to last

🔐

Universal identity

One account to access all your services. Your identity belongs to you.

🔗

OAuth & OpenID Connect

Integrate Idey in a few lines. Open standards, universal compatibility.

🛡

Advanced security

Encryption, rotating tokens, full audit. Your identity is protected.

🖥

Multi-service

Connect all your projects to one identity provider. Centralized management.

For developers

Integrate Idey into your applications in minutes.

// Authenticate with Idey
const response = await fetch('https://idey.org/api/auth/login', {
  method: 'POST',
  body: JSON.stringify({ email, password })
});
const { access_token } = await response.json();