Documentation
Build the future with Tulify's specialized Industry Modules. Access comprehensive APIs for Health, Edutech, Fintech, and more.
Safely test your integration using Test Keys. Mock data is returned without consuming credits or affecting production.
Get up and running with Tulify in less than 5 minutes. Learn the basics of authentication, key management, and your first API call.
Learn how to securely authenticate your API requests using API Keys and JWT tokens.
SDK Installation
We provide official SDKs for popular programming languages to help you integrate faster.
Node.js / TypeScript
npm install @tulify/sdk// Usage Example
import { Tulify } from '@tulify/sdk';
const client = new Tulify('pk_live_...');
const verification = await client.kyc.create({
firstName: 'John',
lastName: 'Doe',
document: fileStream
});Python
pip install tulify-python# Usage Example
from tulify import Tulify
client = Tulify('pk_live_...')
verification = client.kyc.create(
first_name='John',
last_name='Doe',
document=file_stream
)Changelog
v1.2.0
CurrentJan 8, 2026Added support for global address verification and enhanced webhooks for KYB events.
v1.1.5
Dec 20, 2025Fixed an issue with rate limiting headers and improved error messages for invalid API keys.