Product

50+ Integrations

Connect TigerIdentity to your entire technology stack. Pre-built connectors for identity providers, cloud infrastructure, databases, and SaaS applications.

Real-Time Sync

Identity changes sync within seconds. No more stale data or batch delays.

Bi-Directional

Read and write access. Provision, deprovision, and update across all connected systems.

Custom Connectors

Build your own connectors with our SDK. Connect any system with an API.

Secure by Design

All connections encrypted. Credentials stored in your own secrets manager.

Connect Everything

Pre-built connectors sync identities in real-time. No custom development required.

Build Custom Connectors

Don't see your system? Build a custom connector with our SDK. Connect any system with a REST or GraphQL API.

  • TypeScript and Go SDKs
  • Built-in retry and rate limiting
  • Webhook and polling support
  • Incremental sync capabilities
Read the connector docs
import { Connector } from '@tigeridentity/sdk';

const connector = new Connector({
  name: 'my-custom-system',
  type: 'identity-source',
});

connector.onSync(async (ctx) => {
  const users = await myAPI.getUsers();

  for (const user of users) {
    await ctx.upsertPrincipal({
      externalId: user.id,
      type: 'user',
      attributes: {
        email: user.email,
        department: user.dept,
      },
    });
  }
});

connector.start();

Ready to connect your stack?

See how TigerIdentity integrates with your existing tools in a personalized demo.

Schedule Your Demo