Getting Started with Tulify

Start integrating identity verification and compliance services in minutes

1
Create Your Account
Sign up and verify your email

Register for a free Tulify account to get started. You'll receive 100 free API calls per day to test our services.

2
Generate API Keys
Create and configure your API credentials

Navigate to the API Keys section in your dashboard to generate your first API key. You can create separate keys for development and production environments.

Best Practices
  • Never commit API keys to version control
  • Use environment variables for key storage
  • Rotate keys regularly for security
  • Use separate keys for different environments
3
Install the SDK
Choose your preferred language

We provide official SDKs for popular programming languages. Install the SDK for your platform:

Node.js / JavaScript

npm install @tulify/sdk

Python

pip install tulify

Ruby

gem install tulify

No SDK for your language? You can use our REST API directly. Check out the API documentation for details.

4
Make Your First Request
Verify an identity in seconds

Here's a simple example to verify a user's identity:

import { TulifyClient } from '@tulify/sdk';

const client = new TulifyClient({
  apiKey: process.env.TULIFY_API_KEY
});

const result = await client.identity.verify({
  firstName: 'John',
  lastName: 'Doe',
  dateOfBirth: '1990-01-01',
  documentNumber: 'AB123456',
  documentType: 'passport'
});

console.log(result);
// {
//   verificationId: 'ver_1234567890',
//   status: 'verified',
//   confidence: 0.98
// }
Next Steps
Explore more features and capabilities

Explore Industry Modules

Try our specialized modules for fintech, retail, healthcare, and more.

Set Up Webhooks

Receive real-time notifications for verification events.

Monitor Analytics

Track your API usage, performance, and error rates in real-time.

Complete KYC/KYB

Submit your business verification to unlock higher rate limits.

Helpful Resources

Documentation
Comprehensive guides and API reference

Need Help?

Our support team is here to help you get started