@loveconnet/sdk
v1.0.0
Published
Official LoveConnet Developer API SDK for Node.js/TypeScript — Verified Human Identity Platform
Maintainers
Readme
LoveConnet SDK
Official SDK for the LoveConnet Developer API — the world's first Verified Human Identity Platform.
Installation
npm install @loveconnet/sdkQuick Start
import { LoveConnetClient } from '@loveconnet/sdk';
const client = new LoveConnetClient({
apiKey: 'lc_live_your_api_key_here',
});
// Get user profile
const profile = await client.getUserProfile('user_token_here');
console.log(profile.name, profile.bio);
// Verify user identity
const verification = await client.getVerificationStatus('user_token_here');
console.log(verification.face_verified); // true/false
// Screen text for safety
const result = await client.screenText('Hello world');
console.log(result.is_safe); // trueFeatures
- ✅ Auto-retry with exponential backoff
- ✅ TypeScript types included
- ✅ Comprehensive error handling
- ✅ Rate limit awareness
- ✅ Idempotency support
Documentation
Full API docs: https://loveconnet.com/developers/docs
License
MIT
