Documentation

Build the future with Tulify's specialized Industry Modules. Access comprehensive APIs for Health, Edutech, Fintech, and more.

Industry Modules API
New
The core of Tulify. Specialized endpoints for various industries including Health, Edutech, Loan, and more.

Access standardized data models, mock test data, and production-ready endpoints for your industry-specific applications. Seamlessly switch between test and live modes.

Test Mode & Sandbox

Safely test your integration using Test Keys. Mock data is returned without consuming credits or affecting production.

Test Key Prefix:
tfy-ap-test-...

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, 2026

Added support for global address verification and enhanced webhooks for KYB events.

v1.1.5

Dec 20, 2025

Fixed an issue with rate limiting headers and improved error messages for invalid API keys.