Stop bot job applications at the API.
LinkedIn removed 25 million fake accounts in Q1 2025. Indeed processed 73 million applications submitted by AI agents the same year. Greenhouse, Ashby, Lever recruiters spend 38% of their week deduping the AI submissions. The hiring funnel is filled with synthetic candidates. Manav refuses them at the ATS API.
The Operator-class agent now job-hunts for its user. The recruiter has no way to know.
OpenAI Operator and equivalent autonomous agents launched in late 2025. By Q1 2026, agent-submitted applications outnumber human-submitted ones on the largest job boards. Recruiters can't tell which is which, the cover letters are better, the keyword optimisation is perfect, the interview availability is suspiciously open.
One verify() call at submission. Optionally accept agent applications under a verified human's delegation.
// ats/applications/submit.ts async function submitApplication(req, candidate) { const { is_human, trust_score, delegation } = await manav.verify({ email: candidate.email, context: "hiring/application", // Optionally allow delegated agent submissions: accept_delegation: true }); if (!is_human && !delegation) return { rejected: "unverified_actor" }; if (trust_score < 60) return { rejected: "low_trust" }; const tag = delegation ? "agent-submitted" : "human-submitted"; return applications.insert({ ...req.body, manav_tag: tag }); }
The two-mode response is the killer feature. Reject pure bots outright. Accept agent applications when the human has explicitly delegated. The recruiter sees the tag, they can choose to filter, weight, or just sort the human-submitted to the top.
Recruiter time saved per month.
Industry-average $0.78 fully-loaded recruiter cost per minute spent deduping. Industry-average 22 seconds per agent application to flag and reject manually. Manav cuts both to zero.
EU AI Act Article 14, covered.
From August 2 2026, EU employers must record meaningful human oversight of every AI-assisted decision. The Manav delegation receipt is the audit artifact regulators want. Anchored signature. Time-stamped. Offline-verifiable. Reviewed in your existing ATS audit log.
Three categories. Names withheld.
Application-API gating
Verify the candidate before the application writes. Agent-submitted applications accepted only under verified delegation. Tag visible to the recruiter; recruiter chooses.
Portable check anchoring
Every completed check anchored to a manav.id. Receipt travels with the worker across employers. Re-check spend drops 60-70% across the integrator base.
Mastery artifact signing
Every credential signed by a manav.id. Proof travels with the artifact when uploaded to a hiring platform. Dozens of platforms accept the receipt without re-issuing.
→ Customers chose not to be named.