Documentation
Everything you need to integrate Huntr into your systems. RESTful APIs, webhooks, and SDKs.
APIs
Create, read, update worker profiles. Manage documents and skills.
Check corridor requirements. Get gap analysis. Validate readiness.
Submit documents for verification. Get validation results and fraud scores.
Score workers against jobs. Get ranked results with match reasons.
Update placement status. Query pipeline. Get analytics.
Real-time notifications for status changes, verifications, alerts.
Workers API
Example
Retrieve a worker profile with all associated data.
// Request GET /v1/workers/HW-2K4N8M3P Authorization: Bearer sk_live_xxx // Response { "huntr_id": "HW-2K4N8M3P", "name": "Arun Kumar Sharma", "nationality": "NP", "primary_skill": "mason", "experience_years": 8, "verification_status": "verified", "documents": [...], "placements": [...] }
Authentication
All API requests require authentication via Bearer token.
// Include in all requests Authorization: Bearer sk_live_xxxxxxxxxxxxx // Test mode Authorization: Bearer sk_test_xxxxxxxxxxxxx