Documentation

Everything you need to integrate and customize TalentLit ATS

Developer Resources

Comprehensive guides and resources for developers

API Reference

Complete API documentation with examples and endpoints

  • • REST API endpoints
  • • Authentication methods
  • • Request/response examples
  • • Error handling

SDKs & Libraries

Official SDKs for popular programming languages

  • • JavaScript/Node.js SDK
  • • Python SDK
  • • PHP SDK
  • • Ruby SDK

Webhooks

Real-time notifications for your applications

  • • Event types and payloads
  • • Webhook security
  • • Retry mechanisms
  • • Testing webhooks

Integration Guides

Step-by-step integration tutorials

  • • HR system integrations
  • • Calendar integrations
  • • Email service setup
  • • Single sign-on (SSO)

Best Practices

Recommended approaches for optimal performance

  • • Rate limiting guidelines
  • • Data handling best practices
  • • Security recommendations
  • • Performance optimization

Changelog

Track API changes and new features

  • • Version history
  • • Breaking changes
  • • New features
  • • Deprecation notices

Quick Start Guide

Get up and running with TalentLit API in minutes

1. Get Your API Key

curl -X POST https://api.talentlit.com/v1/auth/token \ -H "Content-Type: application/json" \ -d '{"email": "your@email.com", "password": "your-password"}'

2. Create Your First Job

curl -X POST https://api.talentlit.com/v1/jobs \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"title": "Software Engineer", "description": "Join our team...", "location": "Remote"}'

3. Retrieve Candidates

curl -X GET https://api.talentlit.com/v1/jobs/JOB_ID/candidates \ -H "Authorization: Bearer YOUR_API_KEY"